U++ framework
Do not panic. Ask here before giving up.

Home » U++ Library support » Look and Chameleon Technology » A little theming
Re: A little theming [message #18826 is a reply to message #18820] Sat, 25 October 2008 11:31 Go to previous messageGo to next message
tojocky is currently offline  tojocky
Messages: 607
Registered: April 2008
Location: UK
Contributor

unodgs wrote on Fri, 24 October 2008 15:53

Quote:


PS: How's your Oxygen style progressing? With two high quality custom themes, and one reproducing the “modern” Windows look (like in ToolKit Pro), we will have great eye-candy possibilities.


The problem is I have no time right now, as always (one commercial project is almost finished the next is coming..), but I'll try to get back to it ASAP.


ASAP? Why?
Will not be greater for make in u++ this functionality?
Automation evidense of firm we can integrate in U++ with PostGres SQL!
John.
Re: A little theming [message #18827 is a reply to message #18818] Sat, 25 October 2008 11:40 Go to previous messageGo to next message
tojocky is currently offline  tojocky
Messages: 607
Registered: April 2008
Location: UK
Contributor

cbpporter wrote on Fri, 24 October 2008 12:01

tojocky wrote on Fri, 24 October 2008 08:59

What about to create a visual theme editor mechanism?
I thing that will be greater!

That would be great, but I don't know how it could be possible. When I started doing this theme, I thought that all that working with the images and fiddling to get shadows perfect would be horrible. But instead, that was the easies part. Figuring out how to set thing inn Chameleon so that it looks the same under all platforms was/is the hard part. It would be even harder to incorporate that into a visual editor. But it is something to think about. If you have any ideas, please share.

OTOH, I've been thinking a lot about the previous idea with an achieve with and XML and a bunch of pictures. It would make the theme more editable by the non technical people. Sure, TheIDE's image editor is quite excellent after you get used tot it (but I did manage to crash it once), but you have to write code to apply those images and extra information to a theme and export it as a shareable binary. With and XML, people could edit it easily and use their favorite image editing program. Yet, U++ theming engine is not really targeted by anybody else than us, and I think we can handle a little code Smile.




I thing that will be great to save style theme in the extern file! About visual theme to meke an interface that can set style of ctrls (form, button, edit field, ...). It is in the start!
Re: A little theming [message #18828 is a reply to message #18820] Sat, 25 October 2008 12:01 Go to previous messageGo to next message
cbpporter is currently offline  cbpporter
Messages: 1428
Registered: September 2007
Ultimate Contributor
I have a new problem: the style for DropChoice overrides the style for DropList. I need them to be different. Under Vista and a lot of Gtk styles they are different, so it can be done. The question is how?

I set the style of DropList by DropList::StyleDefault().Write() = smth and of DropChoice by DropChoice::StyleDefault().Write() = smthelse. After this, both controls will have the smthelse style.
Re: A little theming [message #18908 is a reply to message #18828] Fri, 31 October 2008 14:34 Go to previous messageGo to next message
mirek is currently offline  mirek
Messages: 14291
Registered: November 2005
Ultimate Member
MultiButton (which is a baseclass for DropList) has two styles:

static const Style& StyleDefault();
static const Style& StyleFrame();

DropChoice is using second one. Anyway, unless written something else, its values default to the first one...

Mirek
Re: A little theming [message #18909 is a reply to message #18818] Fri, 31 October 2008 14:40 Go to previous messageGo to next message
mirek is currently offline  mirek
Messages: 14291
Registered: November 2005
Ultimate Member
cbpporter wrote on Fri, 24 October 2008 05:01

OTOH, I've been thinking a lot about the previous idea with an achieve with and XML and a bunch of pictures. It would make the theme more editable by the non technical people. Sure, TheIDE's image editor is quite excellent after you get used tot it (but I did manage to crash it once), but you have to write code to apply those images and extra information to a theme and export it as a shareable binary. With and XML, people could edit it easily and use their favorite image editing program. Yet, U++ theming engine is not really targeted by anybody else than us, and I think we can handle a little code Smile.



Not a bad idea. IMO, it should be possible to do this on top of existing chameleon.

In fact, the most simple thing to do (about 20 lines of code) is to add import/export of Ctrls.iml (to/from directory with .png files). Add one .png, put hotspots in the name somehow and you are quite configurable... (minus those pesky details....)

Mirek
Re: A little theming [message #20287 is a reply to message #18820] Fri, 06 March 2009 21:01 Go to previous messageGo to next message
Infausto is currently offline  Infausto
Messages: 28
Registered: June 2008
Promising Member
what happend with this mini-project?. The skulpture theme will be integrated with the next version of TheIde??
Re: A little theming [message #20310 is a reply to message #20287] Mon, 09 March 2009 08:30 Go to previous messageGo to next message
cbpporter is currently offline  cbpporter
Messages: 1428
Registered: September 2007
Ultimate Contributor
Infausto wrote on Fri, 06 March 2009 22:01

what happend with this mini-project?. The skulpture theme will be integrated with the next version of TheIde??

The next version of both the theme and the theming mechanism is work in progress. I will commit to Bazaar soon.

I don't know about inclusion in TheIDE, but since new theme is going to be an externally loadable file, you will be able to add this theme to any project.
Re: A little theming [message #21410 is a reply to message #20310] Tue, 19 May 2009 05:13 Go to previous messageGo to next message
cbpporter is currently offline  cbpporter
Messages: 1428
Registered: September 2007
Ultimate Contributor
I've committed the new version of Skulpture to Bazaar. It is yet a little bit experimental, but if everything goes OK this is the path the project is going to follow from now on, so consider old version as no longer supported.

This new version uses a plain ini file with some simple commands and plain png files stored on the disk. The advantages are that one can edit the theme without TheIDE or any programming skill. One can also edit the theme and apply the changes without restarting or recompiling your application. The disadvantage is that you no longer have a single file, disadvantage that can be fully offset by using an achieve (though this is not implemented yet).

It also features two reskinned widgets and a number of small tweaks and bugfixes.

There is also a new color scheme called Stone which is WIP right now, but once it is ready I think I'm going to use this one as a default. While old color scheme is great, it really does not mix that well with the cheap low end poor contrast LCDs that seem to populate every office.

The API is the same, but for now the ability to apply only a subset of the theme is lost:
Theme m;
m.Load("c:\\Skulpture\\Default");


There is still a lot of work. Next I'm going to skin ProgressIndicator and SliderCtrl. SliderCtrl is going to be more work, because I need to patch CtrlLib so that it accepts styles for this control.
Re: A little theming [message #21464 is a reply to message #21410] Thu, 21 May 2009 19:37 Go to previous messageGo to next message
cbpporter is currently offline  cbpporter
Messages: 1428
Registered: September 2007
Ultimate Contributor
Wow, really nice. I can't get it to compile under MINGW. Sorry about that. I'll look into it.
Re: A little theming [message #21465 is a reply to message #21464] Thu, 21 May 2009 20:02 Go to previous messageGo to next message
Mindtraveller is currently offline  Mindtraveller
Messages: 917
Registered: August 2007
Location: Russia, Moscow rgn.
Experienced Contributor

Could you please post a pair of screenshots of new themes?
Re: A little theming [message #21518 is a reply to message #21465] Sun, 24 May 2009 10:58 Go to previous messageGo to next message
cbpporter is currently offline  cbpporter
Messages: 1428
Registered: September 2007
Ultimate Contributor
Mindtraveller wrote on Thu, 21 May 2009 21:02

Could you please post a pair of screenshots of new themes?

Sure!

EDIT: old image removed, see new one

As you can see Stone (the second one) is not quite ready yet, while the first one looks IMO quite mature. There are some colors I'm going to tweak in Default (need better name) and I'll finish Stone in 1-2 updates.

I still need to re skin DropList and Drop choice according to latest style. Is anybody a big fan of the difference between DropChoice and DropList skin? Because it may be eliminated.

ProgressIndicator is also done. (BTW: Why such a long name? How about ProgressCtrl?)

Next I was going to do SliderCtrl, but since it doesn't have a style, it raises some interesting problems. I can add the style very easily and know how it's going to look. That's not the problem. The problem is that the Style is going to be present only in SVN version of CtrlLib. And I can't use non-official releases for the only application where Skulpture is the default look. So I would have to maintain two versions of Skulpture. I'll post the Style here after it is ready and once it is included in 20xx.1 I'll update Skulpture.

So I'll do ArrayCtrl next. More people are probably using ArrayCtrl vs. SliderCtrl anyway.

[Updated on: Tue, 26 May 2009 19:29]

Report message to a moderator

Re: A little theming [message #21519 is a reply to message #21518] Sun, 24 May 2009 11:02 Go to previous messageGo to next message
cbpporter is currently offline  cbpporter
Messages: 1428
Registered: September 2007
Ultimate Contributor
Almost forget: yes, I know it still won't compile with MINGW. I don't know why SetIfNotNull doesn't compile. Maybe someone has some ideas. Thanks!
Re: A little theming [message #21520 is a reply to message #21519] Sun, 24 May 2009 11:33 Go to previous messageGo to next message
Didier is currently offline  Didier
Messages: 740
Registered: November 2008
Location: France
Contributor
The compile problem is not only on MINGW, there is the same problem on linux ==> the "problem" comes from the compiler GCC.

Here is a valid correction but it needs to be optimised (on point 2):

In Theme.cpp
------------
1 - I removed the second template parameter: V is supposed to be a Value type since you use ' v.Is<Upp::String> ' just let C++ inheritance do it's work.

//template <typename T, typename V>
template <typename T>
inline void SetIfNotNull(T& t, Value v)
{
	if ( v.Is<Upp::String>() && ((String)v == "null") )
		t = Null;
	else
		if (!IsNull(v))
	    	t = v;
}


2 - You have to add a temporary object:
Image imag
because problems when using temporary references: It is not excluded that
ImageBuffer img( imag );
will use the address of the passed object which would be completely false for a temporary reference. Even though the problem is still here after correction (img is a temporary to the scope) at least it is visible while reading the code and not left to compiler will.

Value Theme::StringToObject(const String& s, const String& def) {
	Vector<String> v = Split(s, ' ');
	if (v.GetCount() == 0)
		return Null;
	if (v[0] == "png") {
		Image imag = PNGRaster().LoadFileAny(AppendFileName(dir, def));
		ImageBuffer img( imag );
		if (img.IsEmpty())



In Theme.h
----------
3 - remove the
 Theme:: 
from the following line
	void Theme::LoadEditField(EditField::Style& d, const VectorMap<String, String>& set, const String& dir, const String& file);




Question:
---------
1 - Is there some documentation for the 'theme.ini' file syntax ?
2 - Can I use several themes in one application (like have two tabs not using same theme) or add in 'theme.ini' several different versions of skin for a ctrl ?


Skulpture looks good on linux Cool

Re: A little theming [message #21521 is a reply to message #21520] Sun, 24 May 2009 11:57 Go to previous messageGo to next message
cbpporter is currently offline  cbpporter
Messages: 1428
Registered: September 2007
Ultimate Contributor
Hi Didier!

Thanks for point number one! Maybe sometimes using too much features like templates is not that good. I wonder if GCC is not being 100% compliant here, or is there an issue with the code I've written (except the obvious us of V instead of const V& in the parameter list Smile ).

Sorry about points 2 and 3. I've corrected them after first noticing MINGW problems, but missed on my commit because I was accidentally using and editing Theme from MyApps instead from bazaar nest. I've corrected this and there shouldn't be any more source synchronization issues. But not being able to repeat the class name in a definition is really silly. I wish GCC would allow this.

Quote:

1 - Is there some documentation for the 'theme.ini' file syntax ?
2 - Can I use several themes in one application (like have two tabs not using same theme) or add in 'theme.ini' several different versions of skin for a ctrl ?


1. No, there is not documentation yet. Maybe after it gets more stable. But it is pretty straightforward. Every section name corresponds more or less to a widget. Values from the sections correspond to the same named field in the appropriate style structure. Values can be simple values or commands:
color r g b             // simple rgb value
null                    // null look
png                     // loads a png from correct folder and name determined by what the image is going to be used for
png hot i1 i2 i3 i4     // loads a png and sets hot spots

I'll add a name parameter to png in the future for custom file names and maybe other formats, but png is IMO best for this purpose: small, loose less and portable.

2. This was a feature in previous version of Theme and I'll bring it back. It got lost since I've rewritten the them class from scratch and it is a little poor on features right now because I'm focusing on the look. Themes are applied now once loaded, but you will be able to keep several loaded in memory and apply only a widget at a time to mix and match.
Re: A little theming [message #21522 is a reply to message #18450] Sun, 24 May 2009 12:11 Go to previous messageGo to next message
Didier is currently offline  Didier
Messages: 740
Registered: November 2008
Location: France
Contributor
Thanks Smile

In fact I don't know what a hot-spot is (I don't usualy do GUI's)

Re: A little theming [message #21554 is a reply to message #21522] Tue, 26 May 2009 12:13 Go to previous messageGo to next message
chickenk is currently offline  chickenk
Messages: 171
Registered: May 2007
Location: Grenoble, France
Experienced Member
Hi,

a quick fix to make this nice package cross-platform (there are cleaner ways but anyway)

Use the attached Theme.cpp file, and rename all .PNG to .png. Taking care of filenames case is important and sometime difficult on Windows...

For anyone on a Unix platform, the fix consists in that:

$ cd <path_to_bazaar>
$ sed -i -e 's/"\\\\"/DIR_SEP/g' Theme/Theme.cpp
$ for f in $(find Themes -name "*.PNG") ; do mv $f ${f/PNG/png} ; done

Enjoy !

regards,
Lionel
  • Attachment: Theme.cpp
    (Size: 12.68KB, Downloaded 657 times)
Re: A little theming [message #21559 is a reply to message #21554] Tue, 26 May 2009 19:29 Go to previous messageGo to next message
cbpporter is currently offline  cbpporter
Messages: 1428
Registered: September 2007
Ultimate Contributor
New update features:
- Stone has almost caught up with Default
- unified DropList and DropChoice skins
- style for TriState options added (still needs a little more work on contrast)
- fixed bugs with single tab TabCtrl
- fixed hopefully problems under Linux with file names (though I must admit I still haven't gotten around to test it under Linux).

So now would be a good moment for people who where using previous versions and people who would like to maybe use it from now on to test the thing. I accept bug reports and reasonable requests (maybe we'll have pink Skulpture Razz ). There are still some small issues and features to be added (selective themeing, hooks for widgets from different packages), but Ill try to reach a point of stability and enter maintenance mode.


index.php?t=getfile&id=1751&private=0
Re: A little theming [message #21563 is a reply to message #21559] Wed, 27 May 2009 07:25 Go to previous messageGo to next message
cbpporter is currently offline  cbpporter
Messages: 1428
Registered: September 2007
Ultimate Contributor
A skin for ArrayCtrl has been added.

In anticipation for selective themeing there is a change in the API: you need to call Theme::Apply for the visual changes to take effect. Theme::Load only loads theme info (not the resources) into memory.
Re: A little theming [message #21631 is a reply to message #21563] Sat, 30 May 2009 10:02 Go to previous messageGo to next message
cbpporter is currently offline  cbpporter
Messages: 1428
Registered: September 2007
Ultimate Contributor
New update here and this one is a big one:
- ProgressIndicator has a vertical skin now
- LeftEdgeStyle skinned for Button
- ViewEdge is now a separate entity
- added almost all properties of style structures to Theme. The idea is that now Theme.ini can be edited to tweak almost every aspect of style structure, except for font and font related fields. Chameleon is very complex and styles often have some interactions and until now Skulpture worked but it took advantage of the sensible defaults provided by the system. I'm migrating to a self contained structure, where a theme relies only on itself and works and looks exactly the same on all platforms disregarding defaults.
- code has been refactored and it is now very easy to add or remove a property
- mix and match is partially implemented. Not all widgets can be disabled yet, but for the ones you can, if you apply the theme with e.g. Button skinning disabled, you will get your theme except the Button skin. The final Button skin will be your original skin, like Windows default or a previous custom skin you loaded before. If you load a second theme and disable all except Button, you have basically combined two themes. In next update I'll finish this feature.

PS: Stone is allays lagging behind, and after this update you'll see a lot of bugs. Will fix ASAP.
Re: A little theming [message #22218 is a reply to message #21631] Thu, 25 June 2009 04:30 Go to previous messageGo to next message
cbpporter is currently offline  cbpporter
Messages: 1428
Registered: September 2007
Ultimate Contributor
I added a new style which replicates art/BlueBar. It can be found in bazaar/Themes/BlueBar.

PS: You may get a compile error stating that Crc32 can't be found. This is an issue with plugin/Zip. Change Crc32 to Crc32Stream and it will compile. Something to fix in U++.

index.php?t=getfile&id=1815&private=0


  • Attachment: Untitled.PNG
    (Size: 29.86KB, Downloaded 1635 times)
Re: A little theming [message #22233 is a reply to message #22218] Fri, 26 June 2009 13:34 Go to previous messageGo to next message
mirek is currently offline  mirek
Messages: 14291
Registered: November 2005
Ultimate Member
Is it time to move this into theide as an alternative scheme?

Mirek
Re: A little theming [message #22237 is a reply to message #22233] Fri, 26 June 2009 14:28 Go to previous messageGo to next message
cbpporter is currently offline  cbpporter
Messages: 1428
Registered: September 2007
Ultimate Contributor
Well the theme is ready. I've been using the new version for TheIDE for quite a while now and all visual elements fit it pretty good (except QuickTabs).

But I would wait, since in next update I'll add the support to load from an achieve. I would rather have way of selecting any external archive as a theme rather than only one.
Re: A little theming [message #22258 is a reply to message #22237] Sun, 28 June 2009 09:29 Go to previous messageGo to next message
cbpporter is currently offline  cbpporter
Messages: 1428
Registered: September 2007
Ultimate Contributor
Added Zip support. Skulture and Skulpture Stone now have two Zip archives in bazaar/Theme. As time passes I'll probably delete the non Zip versions if nobody has anything against it.

The implementation of temp folder unpacking may break if you do not have sufficient privileges on your system because I couldn't use RealizeDirectory on the result of GetTempFileName. It seems like a bug. It won't work under Linux, but I guess it's time to start Linux testing.

After I'm done with Linux testing, I'll consider this project done. One thing that I might add is a full set of widgets BlueBar theme, but I don't know exactly the source of the style.
Re: A little theming [message #22359 is a reply to message #22258] Tue, 07 July 2009 20:05 Go to previous messageGo to next message
mirek is currently offline  mirek
Messages: 14291
Registered: November 2005
Ultimate Member
BlueBar is no really a theme, it just paints bars blue Smile

(Which is considered "cool" for some reason, as demonstrated by many existing Win32 apps).

Mirek
Re: A little theming [message #25567 is a reply to message #22359] Mon, 01 March 2010 13:42 Go to previous messageGo to next message
cbpporter is currently offline  cbpporter
Messages: 1428
Registered: September 2007
Ultimate Contributor
Well it's them update time, and an interesting question arises: should I add support for Splitter style? If I do I cut off support for SVN versions 2152 or lower.

Also if I cut of support, there are two enhancements to Chameleon which should be added now, so that I am not forced to take this decision again at future SVN version.
Re: A little theming [message #25580 is a reply to message #18450] Mon, 01 March 2010 19:52 Go to previous messageGo to next message
Sgifan is currently offline  Sgifan
Messages: 37
Registered: February 2010
Location: France
Member
Just a quick question, where is this theming package to be found. I did not find it in the bazaar assemblies from any version of UPP (from 2070 to svn)

thanks

Re: A little theming [message #25613 is a reply to message #25580] Wed, 03 March 2010 20:36 Go to previous messageGo to next message
cbpporter is currently offline  cbpporter
Messages: 1428
Registered: September 2007
Ultimate Contributor
Sorry for the delay, but there was a bug and I tried to fix but failed.

It is in bazaar/Theme and the themes are in bazaar/Themes.

As for the bug, I have the temp folder hard coded which will fail on a lot of systems. I remembered why this was so: GetTempPath return the path in short-file name format. And RealizeDirectory fails at this short format. I'll investigate further but googling it has not returned any worth while results.
Re: A little theming [message #25614 is a reply to message #18450] Wed, 03 March 2010 21:20 Go to previous messageGo to next message
Sgifan is currently offline  Sgifan
Messages: 37
Registered: February 2010
Location: France
Member
Thank, I just listed main packages, thats why I did not see it.

I'm new to Upp but very impressed about it. Only thing that would be missing for me is using vectorial GUI rather that bitmap based ones.

Having something as performance oriented as upp and have all the advantages of WPF like user interface, all this with a BSD license, this would be a dream...

but I digress.

thanks again
Re: A little theming [message #25631 is a reply to message #25614] Thu, 04 March 2010 20:28 Go to previous messageGo to next message
Mindtraveller is currently offline  Mindtraveller
Messages: 917
Registered: August 2007
Location: Russia, Moscow rgn.
Experienced Contributor

Actually U++ has something like internal graphic engine which supports vector graphics too. Different antialiasing modes, rotation/scaling, alpha blending, JPG/GIF/PNG - everything is supported even for console projects.
Re: A little theming [message #25632 is a reply to message #18450] Thu, 04 March 2010 21:19 Go to previous messageGo to next message
Sgifan is currently offline  Sgifan
Messages: 37
Registered: February 2010
Location: France
Member
I'm aware of that. but as a canvas only. The controls use draw not painter...
Re: A little theming [message #25635 is a reply to message #25632] Fri, 05 March 2010 08:50 Go to previous messageGo to next message
Mindtraveller is currently offline  Mindtraveller
Messages: 917
Registered: August 2007
Location: Russia, Moscow rgn.
Experienced Contributor

It's because of efficiency. Blitting pixels is much faster than rasterizing vector graphics. And I actually see no sense in making controls vectorized by default: in 99% of cases it is unneeded overhead.
Re: A little theming [message #25637 is a reply to message #18450] Fri, 05 March 2010 10:01 Go to previous messageGo to next message
Sgifan is currently offline  Sgifan
Messages: 37
Registered: February 2010
Location: France
Member
It highly depends on the kind of user interface you want to provide.

When I do not write firmware I have to write PC software using touchscreens. When you use have a 6 inch screen in 800x600 resolution you do not use standard controls. At least you have to strech them, and most of the time this ends up rather ugly.

So the 99% you talk about are the 99% of desktop applications using a big screen a keyboard and a mouse. I guess I'm in the
other part of the panel...





Re: A little theming [message #25638 is a reply to message #25635] Fri, 05 March 2010 10:06 Go to previous messageGo to next message
cbpporter is currently offline  cbpporter
Messages: 1428
Registered: September 2007
Ultimate Contributor
Actually, I think that with carefully selected vector images, it would be a lot faster than scaling bitmaps. No heap activity for one. No need to apply smart scaling/filters. Just one computation with floating point precision for every coordinate, round it to pixels and draw. Skulpture can be represented almost 100% with nothing but non-overlapping rectangles, some filled with gradients.

But back to the subject, using some vector images with Theme is not out of the question. I can only load PNG files now, but with image format registration it could work with anything.

The problem is what kind of format to store the pictures. SVG is far too bloated and large and very hard to implement in a full compliance mode. Tiny spec is not that hard but I don't think we are there yet. Other popular vector images are quite proprietary, like the enhanced PNG from Adobe I think (The one that is not used as external format) or Corel draw files.

PS: The GetTempPath problem is XP only. No progress yet. I'm investigating the use of GetLongPath WIN API.
Re: A little theming [message #26062 is a reply to message #25638] Sat, 27 March 2010 13:56 Go to previous messageGo to next message
cbpporter is currently offline  cbpporter
Messages: 1428
Registered: September 2007
Ultimate Contributor
OK, hopefully fixed the XP bugs this time and it works cross platform.

PS: In anticipation of probable future deprecation of Win98 support, Theme will not work under Windows 98 without "unicows.dll". Not tested under Windows 98 so it is possible for it to not work even with DLL.
Re: A little theming [message #26103 is a reply to message #26062] Thu, 01 April 2010 13:36 Go to previous messageGo to next message
mrjt is currently offline  mrjt
Messages: 705
Registered: March 2007
Location: London
Contributor
Have you heard of XAML? It's used by Microsoft WPF as an alternative to Windows Forms. It's a pretty cool way of theming, basically a giant XML file similar to SVG I guess but more suited to GUIs.

MediaPortal (open-source HTPC front-end) are using it for their 2nd version skinning engine, which is where I came across it.

[Updated on: Thu, 01 April 2010 13:38]

Report message to a moderator

Re: A little theming [message #45070 is a reply to message #22218] Thu, 27 August 2015 13:46 Go to previous messageGo to next message
Alboni is currently offline  Alboni
Messages: 216
Registered: January 2012
Location: Kajaani, Finland
Experienced Member
There don't seem to be any themes in the current release or then I just can't find them
Re: A little theming [message #45071 is a reply to message #18450] Thu, 27 August 2015 14:25 Go to previous messageGo to next message
Alboni is currently offline  Alboni
Messages: 216
Registered: January 2012
Location: Kajaani, Finland
Experienced Member
No Message Body

[Updated on: Thu, 27 August 2015 14:25]

Report message to a moderator

Re: A little theming [message #45072 is a reply to message #18450] Thu, 27 August 2015 14:35 Go to previous message
Alboni is currently offline  Alboni
Messages: 216
Registered: January 2012
Location: Kajaani, Finland
Experienced Member
Sorry, my browser is behaving weirly

[Updated on: Thu, 27 August 2015 14:36]

Report message to a moderator

Previous Topic: The problem with the operation of the buffer.
Next Topic: Set fields side to other fields and fields width to text width
Goto Forum:
  


Current Time: Sun May 10 11:53:33 GMT+2 2026

Total time taken to generate the page: 0.01250 seconds