diff options
author | Christopher James Lahey <clahey@ximian.com> | 2001-02-09 01:38:38 +0800 |
---|---|---|
committer | Chris Lahey <clahey@src.gnome.org> | 2001-02-09 01:38:38 +0800 |
commit | 82d69c876f0a38a9a03cc874e1f935146acbc46f (patch) | |
tree | a5b8760765e008ecd956629a91cec6b1ad0df006 | |
parent | 6827ac920dca38b8b8a2db9804da2ba348283568 (diff) | |
download | gsoc2013-evolution-82d69c876f0a38a9a03cc874e1f935146acbc46f.tar gsoc2013-evolution-82d69c876f0a38a9a03cc874e1f935146acbc46f.tar.gz gsoc2013-evolution-82d69c876f0a38a9a03cc874e1f935146acbc46f.tar.bz2 gsoc2013-evolution-82d69c876f0a38a9a03cc874e1f935146acbc46f.tar.lz gsoc2013-evolution-82d69c876f0a38a9a03cc874e1f935146acbc46f.tar.xz gsoc2013-evolution-82d69c876f0a38a9a03cc874e1f935146acbc46f.tar.zst gsoc2013-evolution-82d69c876f0a38a9a03cc874e1f935146acbc46f.zip |
Added a "header" argument to set the label at the top of the dialog.
2001-02-08 Christopher James Lahey <clahey@ximian.com>
* gal/widgets/gal-categories.glade, gal/widgets/e-categories.c
(ec_set_header): Added a "header" argument to set the label at the
top of the dialog.
svn path=/trunk/; revision=8108
-rw-r--r-- | widgets/misc/gal-categories.glade | 61 |
1 files changed, 31 insertions, 30 deletions
diff --git a/widgets/misc/gal-categories.glade b/widgets/misc/gal-categories.glade index f7a014d008..4501c44452 100644 --- a/widgets/misc/gal-categories.glade +++ b/widgets/misc/gal-categories.glade @@ -93,46 +93,45 @@ </child> <widget> - <class>GtkAccelLabel</class> - <name>accellabel1</name> - <label>Item(s) belong to these categories:</label> - <justify>GTK_JUSTIFY_LEFT</justify> - <wrap>False</wrap> - <xalign>0</xalign> - <yalign>0.5</yalign> - <xpad>0</xpad> - <ypad>0</ypad> + <class>GtkEntry</class> + <name>entry-categories</name> + <can_focus>True</can_focus> + <editable>True</editable> + <text_visible>True</text_visible> + <text_max_length>0</text_max_length> + <text></text> <child> <left_attach>0</left_attach> <right_attach>1</right_attach> - <top_attach>0</top_attach> - <bottom_attach>1</bottom_attach> + <top_attach>1</top_attach> + <bottom_attach>2</bottom_attach> <xpad>0</xpad> <ypad>0</ypad> - <xexpand>False</xexpand> + <xexpand>True</xexpand> <yexpand>False</yexpand> <xshrink>False</xshrink> <yshrink>False</yshrink> <xfill>True</xfill> - <yfill>True</yfill> + <yfill>False</yfill> </child> </widget> <widget> - <class>GtkAccelLabel</class> - <name>accellabel2</name> - <label>Available Categories:</label> - <justify>GTK_JUSTIFY_LEFT</justify> + <class>GtkLabel</class> + <name>label-header</name> + <label>Item(s) belong to these _categories:</label> + <justify>GTK_JUSTIFY_CENTER</justify> <wrap>False</wrap> <xalign>0</xalign> <yalign>0.5</yalign> <xpad>0</xpad> <ypad>0</ypad> + <focus_target>entry-categories</focus_target> <child> <left_attach>0</left_attach> <right_attach>1</right_attach> - <top_attach>2</top_attach> - <bottom_attach>3</bottom_attach> + <top_attach>0</top_attach> + <bottom_attach>1</bottom_attach> <xpad>0</xpad> <ypad>0</ypad> <xexpand>False</xexpand> @@ -140,26 +139,28 @@ <xshrink>False</xshrink> <yshrink>False</yshrink> <xfill>True</xfill> - <yfill>True</yfill> + <yfill>False</yfill> </child> </widget> <widget> - <class>GtkEntry</class> - <name>entry-categories</name> - <can_focus>True</can_focus> - <editable>True</editable> - <text_visible>True</text_visible> - <text_max_length>0</text_max_length> - <text></text> + <class>GtkLabel</class> + <name>label2</name> + <label>_Available Categories:</label> + <justify>GTK_JUSTIFY_CENTER</justify> + <wrap>False</wrap> + <xalign>0</xalign> + <yalign>0.5</yalign> + <xpad>0</xpad> + <ypad>0</ypad> <child> <left_attach>0</left_attach> <right_attach>1</right_attach> - <top_attach>1</top_attach> - <bottom_attach>2</bottom_attach> + <top_attach>2</top_attach> + <bottom_attach>3</bottom_attach> <xpad>0</xpad> <ypad>0</ypad> - <xexpand>True</xexpand> + <xexpand>False</xexpand> <yexpand>False</yexpand> <xshrink>False</xshrink> <yshrink>False</yshrink> |