elementary/datetime - elm_datetime - Open source patch : Separator parsing logic...
[framework/uifw/elementary.git] / src / lib / elm_theme.h
1 /**
2  * @defgroup Theme Theme
3  *
4  * Elementary uses Edje to theme its widgets, naturally. But for the most
5  * part this is hidden behind a simpler interface that lets the user set
6  * extensions and choose the style of widgets in a much easier way.
7  *
8  * Instead of thinking in terms of paths to Edje files and their groups
9  * each time you want to change the appearance of a widget, Elementary
10  * works so you can add any theme file with extensions or replace the
11  * main theme at one point in the application, and then just set the style
12  * of widgets with elm_object_style_set() and related functions. Elementary
13  * will then look in its list of themes for a matching group and apply it,
14  * and when the theme changes midway through the application, all widgets
15  * will be updated accordingly.
16  *
17  * There are three concepts you need to know to understand how Elementary
18  * theming works: default theme, extensions and overlays.
19  *
20  * Default theme, obviously enough, is the one that provides the default
21  * look of all widgets. End users can change the theme used by Elementary
22  * by setting the @c ELM_THEME environment variable before running an
23  * application, or globally for all programs using the @c elementary_config
24  * utility. Applications can change the default theme using elm_theme_set(),
25  * but this can go against the user wishes, so it's not an advised practice.
26  *
27  * Ideally, applications should find everything they need in the already
28  * provided theme, but there may be occasions when that's not enough and
29  * custom styles are required to correctly express the idea. For this
30  * cases, Elementary has extensions.
31  *
32  * Extensions allow the application developer to write styles of its own
33  * to apply to some widgets. This requires knowledge of how each widget
34  * is themed, as extensions will always replace the entire group used by
35  * the widget, so important signals and parts need to be there for the
36  * object to behave properly (see documentation of Edje for details).
37  * Once the theme for the extension is done, the application needs to add
38  * it to the list of themes Elementary will look into, using
39  * elm_theme_extension_add(), and set the style of the desired widgets as
40  * he would normally with elm_object_style_set().
41  *
42  * Overlays, on the other hand, can replace the look of all widgets by
43  * overriding the default style. Like extensions, it's up to the application
44  * developer to write the theme for the widgets it wants, the difference
45  * being that when looking for the theme, Elementary will check first the
46  * list of overlays, then the set theme and lastly the list of extensions,
47  * so with overlays it's possible to replace the default view and every
48  * widget will be affected. This is very much alike to setting the whole
49  * theme for the application and will probably clash with the end user
50  * options, not to mention the risk of ending up with not matching styles
51  * across the program. Unless there's a very special reason to use them,
52  * overlays should be avoided for the reasons exposed before.
53  *
54  * All these theme lists are handled by ::Elm_Theme instances. Elementary
55  * keeps one default internally and every function that receives one of
56  * these can be called with NULL to refer to this default (except for
57  * elm_theme_free()). It's possible to create a new instance of a
58  * ::Elm_Theme to set other theme for a specific widget (and all of its
59  * children), but this is as discouraged, if not even more so, than using
60  * overlays. Don't use this unless you really know what you are doing.
61  *
62  * But to be less negative about things, you can look at the following
63  * examples:
64  * @li @ref theme_example_01 "Using extensions"
65  * @li @ref theme_example_02 "Using overlays"
66  *
67  * @{
68  */
69 /**
70  * @typedef Elm_Theme
71  *
72  * Opaque handler for the list of themes Elementary looks for when
73  * rendering widgets.
74  *
75  * Stay out of this unless you really know what you are doing. For most
76  * cases, sticking to the default is all a developer needs.
77  */
78 typedef struct _Elm_Theme Elm_Theme;
79
80 /**
81  * Create a new specific theme
82  *
83  * This creates an empty specific theme that only uses the default theme. A
84  * specific theme has its own private set of extensions and overlays too
85  * (which are empty by default). Specific themes do not fall back to themes
86  * of parent objects. They are not intended for this use. Use styles, overlays
87  * and extensions when needed, but avoid specific themes unless there is no
88  * other way (example: you want to have a preview of a new theme you are
89  * selecting in a "theme selector" window. The preview is inside a scroller
90  * and should display what the theme you selected will look like, but not
91  * actually apply it yet. The child of the scroller will have a specific
92  * theme set to show this preview before the user decides to apply it to all
93  * applications).
94  */
95 EAPI Elm_Theme       *elm_theme_new(void);
96
97 /**
98  * Free a specific theme
99  *
100  * @param th The theme to free
101  *
102  * This frees a theme created with elm_theme_new().
103  */
104 EAPI void             elm_theme_free(Elm_Theme *th);
105
106 /**
107  * Copy the theme from the source to the destination theme
108  *
109  * @param th The source theme to copy from
110  * @param thdst The destination theme to copy data to
111  *
112  * This makes a one-time static copy of all the theme config, extensions
113  * and overlays from @p th to @p thdst. If @p th references a theme, then
114  * @p thdst is also set to reference it, with all the theme settings,
115  * overlays and extensions that @p th had.
116  */
117 EAPI void             elm_theme_copy(Elm_Theme *th, Elm_Theme *thdst);
118
119 /**
120  * Tell the source theme to reference the ref theme
121  *
122  * @param th The theme that will do the referencing
123  * @param thref The theme that is the reference source
124  *
125  * This clears @p th to be empty and then sets it to refer to @p thref
126  * so @p th acts as an override to @p thref, but where its overrides
127  * don't apply, it will fall through to @p thref for configuration.
128  */
129 EAPI void             elm_theme_ref_set(Elm_Theme *th, Elm_Theme *thref);
130
131 /**
132  * Return the theme referred to
133  *
134  * @param th The theme to get the reference from
135  * @return The referenced theme handle
136  *
137  * This gets the theme set as the reference theme by elm_theme_ref_set().
138  * If no theme is set as a reference, NULL is returned.
139  */
140 EAPI Elm_Theme       *elm_theme_ref_get(Elm_Theme *th);
141
142 /**
143  * Return the default theme
144  *
145  * @return The default theme handle
146  *
147  * This returns the internal default theme setup handle that all widgets
148  * use implicitly unless a specific theme is set. This is also often use
149  * as a shorthand of NULL.
150  */
151 EAPI Elm_Theme       *elm_theme_default_get(void);
152
153 /**
154  * Prepends a theme overlay to the list of overlays
155  *
156  * @param th The theme to add to, or if NULL, the default theme
157  * @param item The Edje file path to be used
158  *
159  * Use this if your application needs to provide some custom overlay theme
160  * (An Edje file that replaces some default styles of widgets) where adding
161  * new styles, or changing system theme configuration is not possible. Do
162  * NOT use this instead of a proper system theme configuration. Use proper
163  * configuration files, profiles, environment variables etc. to set a theme
164  * so that the theme can be altered by simple configuration by a user. Using
165  * this call to achieve that effect is abusing the API and will create lots
166  * of trouble.
167  *
168  * @see elm_theme_extension_add()
169  */
170 EAPI void             elm_theme_overlay_add(Elm_Theme *th, const char *item);
171
172 /**
173  * Delete a theme overlay from the list of overlays
174  *
175  * @param th The theme to delete from, or if NULL, the default theme
176  * @param item The name of the theme overlay
177  *
178  * @see elm_theme_overlay_add()
179  */
180 EAPI void             elm_theme_overlay_del(Elm_Theme *th, const char *item);
181
182 /**
183  * Get the list of registered overlays for the given theme
184  *
185  * @param th The theme from which to get the overlays
186  * @return List of theme overlays. Do not free it.
187  *
188  * @see elm_theme_overlay_add()
189  */
190 EAPI const Eina_List *elm_theme_overlay_list_get(const Elm_Theme *th);
191
192 /**
193  * Appends a theme extension to the list of extensions.
194  *
195  * @param th The theme to add to, or if NULL, the default theme
196  * @param item The Edje file path to be used
197  *
198  * This is intended when an application needs more styles of widgets or new
199  * widget themes that the default does not provide (or may not provide). The
200  * application has "extended" usage by coming up with new custom style names
201  * for widgets for specific uses, but as these are not "standard", they are
202  * not guaranteed to be provided by a default theme. This means the
203  * application is required to provide these extra elements itself in specific
204  * Edje files. This call adds one of those Edje files to the theme search
205  * path to be search after the default theme. The use of this call is
206  * encouraged when default styles do not meet the needs of the application.
207  * Use this call instead of elm_theme_overlay_add() for almost all cases.
208  *
209  * @see elm_object_style_set()
210  */
211 EAPI void             elm_theme_extension_add(Elm_Theme *th, const char *item);
212
213 /**
214  * Deletes a theme extension from the list of extensions.
215  *
216  * @param th The theme to delete from, or if NULL, the default theme
217  * @param item The name of the theme extension
218  *
219  * @see elm_theme_extension_add()
220  */
221 EAPI void             elm_theme_extension_del(Elm_Theme *th, const char *item);
222
223 /**
224  * Get the list of registered extensions for the given theme
225  *
226  * @param th The theme from which to get the extensions
227  * @return List of theme extensions. Do not free it.
228  *
229  * @see elm_theme_extension_add()
230  */
231 EAPI const Eina_List *elm_theme_extension_list_get(const Elm_Theme *th);
232
233 /**
234  * Set the theme search order for the given theme
235  *
236  * @param th The theme to set the search order, or if NULL, the default theme
237  * @param theme Theme search string
238  *
239  * This sets the search string for the theme in path-notation from first
240  * theme to search, to last, delimited by the : character. Example:
241  *
242  * "shiny:/path/to/file.edj:default"
243  *
244  * See the ELM_THEME environment variable for more information.
245  *
246  * @see elm_theme_get()
247  * @see elm_theme_list_get()
248  */
249 EAPI void             elm_theme_set(Elm_Theme *th, const char *theme);
250
251 /**
252  * Return the theme search order
253  *
254  * @param th The theme to get the search order, or if NULL, the default theme
255  * @return The internal search order path
256  *
257  * This function returns a colon separated string of theme elements as
258  * returned by elm_theme_list_get().
259  *
260  * @see elm_theme_set()
261  * @see elm_theme_list_get()
262  */
263 EAPI const char      *elm_theme_get(Elm_Theme *th);
264
265 /**
266  * Return a list of theme elements to be used in a theme.
267  *
268  * @param th Theme to get the list of theme elements from.
269  * @return The internal list of theme elements
270  *
271  * This returns the internal list of theme elements (will only be valid as
272  * long as the theme is not modified by elm_theme_set() or theme is not
273  * freed by elm_theme_free(). This is a list of strings which must not be
274  * altered as they are also internal. If @p th is NULL, then the default
275  * theme element list is returned.
276  *
277  * A theme element can consist of a full or relative path to a .edj file,
278  * or a name, without extension, for a theme to be searched in the known
279  * theme paths for Elementary.
280  *
281  * @see elm_theme_set()
282  * @see elm_theme_get()
283  */
284 EAPI const Eina_List *elm_theme_list_get(const Elm_Theme *th);
285
286 /**
287  * Return the full path for a theme element
288  *
289  * @param f The theme element name
290  * @param in_search_path Pointer to a boolean to indicate if item is in the search path or not
291  * @return The full path to the file found.
292  *
293  * This returns a string you should free with free() on success, NULL on
294  * failure. This will search for the given theme element, and if it is a
295  * full or relative path element or a simple search-able name. The returned
296  * path is the full path to the file, if searched, and the file exists, or it
297  * is simply the full path given in the element or a resolved path if
298  * relative to home. The @p in_search_path boolean pointed to is set to
299  * EINA_TRUE if the file was a search-able file and is in the search path,
300  * and EINA_FALSE otherwise.
301  */
302 EAPI char            *elm_theme_list_item_path_get(const char *f, Eina_Bool *in_search_path);
303
304 /**
305  * Flush the current theme.
306  *
307  * @param th Theme to flush
308  *
309  * This flushes caches that let elementary know where to find theme elements
310  * in the given theme. If @p th is NULL, then the default theme is flushed.
311  * Call this function if source theme data has changed in such a way as to
312  * make any caches Elementary kept invalid.
313  */
314 EAPI void             elm_theme_flush(Elm_Theme *th);
315
316 /**
317  * This flushes all themes (default and specific ones).
318  *
319  * This will flush all themes in the current application context, by calling
320  * elm_theme_flush() on each of them.
321  */
322 EAPI void             elm_theme_full_flush(void);
323
324 /**
325  * Return a list of theme elements in the theme search path
326  *
327  * @return A list of strings that are the theme element names.
328  *
329  * This lists all available theme files in the standard Elementary search path
330  * for theme elements, and returns them in alphabetical order as theme
331  * element names in a list of strings. Free this with
332  * elm_theme_name_available_list_free() when you are done with the list.
333  */
334 EAPI Eina_List       *elm_theme_name_available_list_new(void);
335
336 /**
337  * Free the list returned by elm_theme_name_available_list_new()
338  *
339  * This frees the list of themes returned by
340  * elm_theme_name_available_list_new(). Once freed the list should no longer
341  * be used. a new list mys be created.
342  */
343 EAPI void             elm_theme_name_available_list_free(Eina_List *list);
344
345 /**
346  * Set a specific theme to be used for this object and its children
347  *
348  * @param obj The object to set the theme on
349  * @param th The theme to set
350  *
351  * This sets a specific theme that will be used for the given object and any
352  * child objects it has. If @p th is NULL then the theme to be used is
353  * cleared and the object will inherit its theme from its parent (which
354  * ultimately will use the default theme if no specific themes are set).
355  *
356  * Use special themes with great care as this will annoy users and make
357  * configuration difficult. Avoid any custom themes at all if it can be
358  * helped.
359  */
360 EAPI void             elm_object_theme_set(Evas_Object *obj, Elm_Theme *th);
361
362 /**
363  * Get the specific theme to be used
364  *
365  * @param obj The object to get the specific theme from
366  * @return The specific theme set.
367  *
368  * This will return a specific theme set, or NULL if no specific theme is
369  * set on that object. It will not return inherited themes from parents, only
370  * the specific theme set for that specific object. See elm_object_theme_set()
371  * for more information.
372  */
373 EAPI Elm_Theme       *elm_object_theme_get(const Evas_Object *obj);
374
375 /**
376  * Get a data item from a theme
377  *
378  * @param th The theme, or NULL for default theme
379  * @param key The data key to search with
380  * @return The data value, or NULL on failure
381  *
382  * This function is used to return data items from edc in @p th, an overlay, or an extension.
383  * It works the same way as edje_file_data_get() except that the return is stringshared.
384  */
385 EAPI const char      *elm_theme_data_get(Elm_Theme *th, const char *key);
386
387 /**
388  * @}
389  */