summaryrefslogtreecommitdiff
path: root/src/themes/Atlanta
Commit message (Collapse)AuthorAgeFilesLines
* src/themes/Atlanta/metacity-theme-1.xml:Muktha2005-01-311-1/+6
| | | | | | | | | 2005-01-31 Muktha <muktha.narayan@wipro.com> src/themes/Atlanta/metacity-theme-1.xml: src/themes/Simple/metacity-theme-1.xml: src/themes/Bright/metacity-theme-1.xml: Make the unfocussed title bar distinguishable. Fixes #125291.
* Ensure window buttons get larger when using large print themes.Calum Benson2004-01-091-16/+18
| | | | Fixes #123469.
* Makes Atlanta work better with inverse themes. Fix for 98745.Bill Haneman2002-11-171-2/+2
|
* init button states for the button backgroundsHavoc Pennington2002-08-041-5/+7
| | | | | | | | | | 2002-08-04 Havoc Pennington <hp@redhat.com> * src/frames.c (meta_frames_paint_to_drawable): init button states for the button backgrounds * src/themes/Atlanta/metacity-theme-1.xml: adapt to work correctly with button repositioning
* Theme breakage! Themes have to implement "border" frames now, see AtlantaHavoc Pennington2002-06-221-0/+30
| | | | | | | | | | | | | | | | | | | | 2002-06-21 Havoc Pennington <hp@pobox.com> Theme breakage! Themes have to implement "border" frames now, see Atlanta for an example. Fixes #84285 * src/tools/metacity-window-demo.c (do_appwindow): add a border-only window * src/window.c (update_mwm_hints): read border only from the MWM hints * src/window.h (struct _MetaWindow): add border_only flag * src/core.c (meta_core_get_frame_type): report border type if required * src/common.h (enum): add META_FRAME_TYPE_BORDER
* oops, didn't mean to commit thatHavoc Pennington2002-06-061-2/+2
|
* parse "shade/foo/factor" as a color (colorize_pixbuf): remove the unusedHavoc Pennington2002-06-061-2/+2
| | | | | | | | | | | | | 2002-06-05 Havoc Pennington <hp@pobox.com> * src/theme.c (meta_color_spec_new_from_string): parse "shade/foo/factor" as a color (colorize_pixbuf): remove the unused hsv_to_rgb and vice-versa stuff, add the gtk_style_shade stuff. (meta_color_spec_render): render the shaded color spec * src/theme.h (struct _MetaColorSpec): add "shade" mode to MetaColorSpec.
* totally drop the borders off of maximized windows.Havoc Pennington2002-05-261-5/+5
| | | | | | | 2002-05-26 Havoc Pennington <hp@pobox.com> * src/themes/Atlanta/metacity-theme-1.xml: totally drop the borders off of maximized windows.
* improve the theme viewer so people can see the broken aspects of theirHavoc Pennington2002-03-121-3/+3
| | | | | | | 2002-03-12 Havoc Pennington <hp@pobox.com> * src/theme-viewer.c: improve the theme viewer so people can see the broken aspects of their themes.
* try to make more error message strings the same, easier for translatorsHavoc Pennington2002-02-091-6/+22
| | | | | | | | | | | | | | | | | | | | | | | | | | | | 2002-02-09 Havoc Pennington <hp@pobox.com> * src/theme-parser.c: try to make more error message strings the same, easier for translators * src/theme.c (meta_draw_op_free): free color spec for line op (meta_theme_free): free the integer_constants hash * src/theme-parser.c (parse_boolean): move above first use * src/theme-viewer.c: fixes for theme.h changes * src/frames.c (queue_recalc_func): don't recreate layout immediately, just save title text. should speed things up. (meta_frames_set_title): just remove the layout here also, and save title text. * src/theme-parser.c (parse_toplevel_element): parse title_scale attribute on frame_geometry * src/theme.c: support setting the text size * src/frames.c: support setting the text size * theme-format.txt: updates
* put in some kind of distinctive frame for UTILITY, though it's ugly. AlsoHavoc Pennington2002-02-091-10/+66
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 2002-02-09 Havoc Pennington <hp@pobox.com> * src/themes/Atlanta/metacity-theme-1.xml: put in some kind of distinctive frame for UTILITY, though it's ugly. Also put in the borderless look for maximized windows. * src/stack.c (compute_layer): put splash screen in the splash layer * src/stack.h (enum): create a splash screen layer * src/place.c (meta_window_place): center splashscreen, and fix a typo in the centering code * src/window.c (recalc_window_features): disable most features on splash screens * src/screen.c (set_supported_hint): add UTILITY and SPLASHSCREEN hints * src/window.c: add UTILITY, SPLASHSCREEN implementation * src/window.h (enum): add UTILITY, SPLASHSCREEN types * src/theme-parser.c (parse_toplevel_element): parser support for has_title attribute * src/theme.c (meta_frame_layout_get_borders): handle a has_title field in the layout, for utility windows that don't display a title (would be better to be able to shrink the title text, but that's kind of tricky to implement :-/)
* disable custom log handler and fatal mask for nowHavoc Pennington2002-02-071-0/+239
2002-02-06 Havoc Pennington <hp@pobox.com> * src/main.c (main): disable custom log handler and fatal mask for now * src/theme.c (meta_draw_op_list_draw): Add META_DRAW_CLIP * src/main.c: load theme, monitor current theme setting * src/prefs.c: add "current theme" setting * src/stack.c (meta_stack_free): don't try to free last_root_children_stacked if it doesn't exist * src/themewidget.c: pluggable GtkMisc subclass to use for menu icons * src/screen.c (meta_screen_manage_all_windows): fix signed/unsigned warning * src/frames.c: port to theme system (meta_frames_style_set): chain up * theme-format.txt: new file * configure.in: add more compiler warnings * src/theme.c: add various stuff needed to get theme parser working. Remove the "spacer" concept from FrameLayout object. Add draw op that references a draw op list. * configure.in: require GTK 1.3.13 * src/Makefile.am: add theme-parser.[hc], implement loading a theme * src/theme.c: add "draw title" and "draw window icon" operations (meta_draw_op_draw): put object_width/object_height in expression environment before computing x/y. Handle out-of-memory when creating pixbufs. Assorted other cleanups.