diff options
author | Faisal M. Al-Otaibi <fmalotaibi@kacst.edu.sa> | 2013-06-18 14:26:00 +0200 |
---|---|---|
committer | Faisal M. Al-Otaibi <fmalotaibi@kacst.edu.sa> | 2013-06-18 14:59:07 +0200 |
commit | 4f99d56f929c1eac07217e0f80a501b4e3dbdc6c (patch) | |
tree | e2ec2a96f884775de83b7114c17cea8074986309 /starmath | |
parent | b4219ea230a9635ca2422421324af5c407216e03 (diff) |
convert starmath settings option page to .ui format
Change-Id: I908a29713ca1e01ec3e742193bd4b49e1fa97bc9
Diffstat (limited to 'starmath')
-rw-r--r-- | starmath/UIConfig_smath.mk | 1 | ||||
-rw-r--r-- | starmath/inc/dialog.hxx | 21 | ||||
-rw-r--r-- | starmath/inc/starmath.hrc | 1 | ||||
-rw-r--r-- | starmath/source/dialog.cxx | 72 | ||||
-rw-r--r-- | starmath/source/dialog.hrc | 16 | ||||
-rw-r--r-- | starmath/source/smres.src | 105 | ||||
-rw-r--r-- | starmath/uiconfig/smath/ui/smathsettings.ui | 290 |
7 files changed, 334 insertions, 172 deletions
diff --git a/starmath/UIConfig_smath.mk b/starmath/UIConfig_smath.mk index d64abe8a1e37..2f26333cc396 100644 --- a/starmath/UIConfig_smath.mk +++ b/starmath/UIConfig_smath.mk @@ -28,6 +28,7 @@ $(eval $(call gb_UIConfig_add_uifiles,modules/smath,\ starmath/uiconfig/smath/ui/catalogdialog \ starmath/uiconfig/smath/ui/printeroptions \ starmath/uiconfig/smath/ui/savedefaultsdialog \ + starmath/uiconfig/smath/ui/smathsettings \ starmath/uiconfig/smath/ui/spacingdialog \ )) diff --git a/starmath/inc/dialog.hxx b/starmath/inc/dialog.hxx index ca902b5b9541..6c3586e84521 100644 --- a/starmath/inc/dialog.hxx +++ b/starmath/inc/dialog.hxx @@ -51,18 +51,15 @@ void SetFontStyle(const OUString &rStyleName, Font &rFont); class SmPrintOptionsTabPage : public SfxTabPage { - FixedLine aFixedLine1; - CheckBox aTitle; - CheckBox aText; - CheckBox aFrame; - FixedLine aFixedLine2; - RadioButton aSizeNormal; - RadioButton aSizeScaled; - RadioButton aSizeZoomed; - MetricField aZoom; - FixedLine aFixedLine3; - CheckBox aNoRightSpaces; - CheckBox aSaveOnlyUsedSymbols; + CheckBox* m_pTitle; + CheckBox* m_pText; + CheckBox* m_pFrame; + RadioButton* m_pSizeNormal; + RadioButton* m_pSizeScaled; + RadioButton* m_pSizeZoomed; + MetricField* m_pZoom; + CheckBox* m_pNoRightSpaces; + CheckBox* m_pSaveOnlyUsedSymbols; DECL_LINK(SizeButtonClickHdl, Button *); diff --git a/starmath/inc/starmath.hrc b/starmath/inc/starmath.hrc index f03cd6d06391..dedc3f3fd547 100644 --- a/starmath/inc/starmath.hrc +++ b/starmath/inc/starmath.hrc @@ -79,7 +79,6 @@ #define RID_FONTDIALOG (RID_APP_START + 2) #define RID_FONTSIZEDIALOG (RID_APP_START + 3) #define RID_FONTTYPEDIALOG (RID_APP_START + 4) -#define RID_PRINTOPTIONPAGE (RID_APP_START + 7) #define RID_SYMDEFINEDIALOG (RID_APP_START + 9) #define RID_PRINTUIOPTIONS (RID_APP_START + 11) diff --git a/starmath/source/dialog.cxx b/starmath/source/dialog.cxx index 86e23408929a..67c4a1dfb2a1 100644 --- a/starmath/source/dialog.cxx +++ b/starmath/source/dialog.cxx @@ -152,32 +152,28 @@ void SetFontStyle(const OUString &rStyleName, Font &rFont) IMPL_LINK_INLINE_START( SmPrintOptionsTabPage, SizeButtonClickHdl, Button *, EMPTYARG/*pButton*/ ) { - aZoom.Enable(aSizeZoomed.IsChecked()); + m_pZoom->Enable(m_pSizeZoomed->IsChecked()); return 0; } IMPL_LINK_INLINE_END( SmPrintOptionsTabPage, SizeButtonClickHdl, Button *, pButton ) SmPrintOptionsTabPage::SmPrintOptionsTabPage(Window *pParent, const SfxItemSet &rOptions) - : SfxTabPage(pParent, SmResId(RID_PRINTOPTIONPAGE), rOptions), - aFixedLine1 (this, SmResId( FL_PRINTOPTIONS )), - aTitle (this, SmResId( CB_TITLEROW )), - aText (this, SmResId( CB_EQUATION_TEXT )), - aFrame (this, SmResId( CB_FRAME )), - aFixedLine2 (this, SmResId( FL_PRINT_FORMAT )), - aSizeNormal (this, SmResId( RB_ORIGINAL_SIZE )), - aSizeScaled (this, SmResId( RB_FIT_TO_PAGE )), - aSizeZoomed (this, SmResId( RB_ZOOM )), - aZoom (this, SmResId( MF_ZOOM )), - aFixedLine3 (this, SmResId( FL_MISC_OPTIONS )), - aNoRightSpaces (this, SmResId( CB_IGNORE_SPACING )), - aSaveOnlyUsedSymbols (this, SmResId( CB_SAVE_ONLY_USED_SYMBOLS )) -{ - FreeResource(); - - aSizeNormal.SetClickHdl(LINK(this, SmPrintOptionsTabPage, SizeButtonClickHdl)); - aSizeScaled.SetClickHdl(LINK(this, SmPrintOptionsTabPage, SizeButtonClickHdl)); - aSizeZoomed.SetClickHdl(LINK(this, SmPrintOptionsTabPage, SizeButtonClickHdl)); + : SfxTabPage(pParent, "SmathSettings", "modules/smath/ui/smathsettings.ui", rOptions) +{ + get( m_pTitle, "title"); + get( m_pText, "text"); + get( m_pFrame, "frame"); + get( m_pSizeNormal, "sizenormal"); + get( m_pSizeScaled, "sizescaled"); + get( m_pSizeZoomed, "sizezoomed"); + get( m_pZoom, "zoom"); + get( m_pNoRightSpaces, "norightspaces"); + get( m_pSaveOnlyUsedSymbols, "saveonlyusedsymbols"); + + m_pSizeNormal->SetClickHdl(LINK(this, SmPrintOptionsTabPage, SizeButtonClickHdl)); + m_pSizeScaled->SetClickHdl(LINK(this, SmPrintOptionsTabPage, SizeButtonClickHdl)); + m_pSizeZoomed->SetClickHdl(LINK(this, SmPrintOptionsTabPage, SizeButtonClickHdl)); Reset(rOptions); } @@ -186,20 +182,20 @@ SmPrintOptionsTabPage::SmPrintOptionsTabPage(Window *pParent, const SfxItemSet & sal_Bool SmPrintOptionsTabPage::FillItemSet(SfxItemSet& rSet) { sal_uInt16 nPrintSize; - if (aSizeNormal.IsChecked()) + if (m_pSizeNormal->IsChecked()) nPrintSize = PRINT_SIZE_NORMAL; - else if (aSizeScaled.IsChecked()) + else if (m_pSizeScaled->IsChecked()) nPrintSize = PRINT_SIZE_SCALED; else nPrintSize = PRINT_SIZE_ZOOMED; rSet.Put(SfxUInt16Item(GetWhich(SID_PRINTSIZE), (sal_uInt16) nPrintSize)); - rSet.Put(SfxUInt16Item(GetWhich(SID_PRINTZOOM), (sal_uInt16) aZoom.GetValue())); - rSet.Put(SfxBoolItem(GetWhich(SID_PRINTTITLE), aTitle.IsChecked())); - rSet.Put(SfxBoolItem(GetWhich(SID_PRINTTEXT), aText.IsChecked())); - rSet.Put(SfxBoolItem(GetWhich(SID_PRINTFRAME), aFrame.IsChecked())); - rSet.Put(SfxBoolItem(GetWhich(SID_NO_RIGHT_SPACES), aNoRightSpaces.IsChecked())); - rSet.Put(SfxBoolItem(GetWhich(SID_SAVE_ONLY_USED_SYMBOLS), aSaveOnlyUsedSymbols.IsChecked())); + rSet.Put(SfxUInt16Item(GetWhich(SID_PRINTZOOM), (sal_uInt16) m_pZoom->GetValue())); + rSet.Put(SfxBoolItem(GetWhich(SID_PRINTTITLE), m_pTitle->IsChecked())); + rSet.Put(SfxBoolItem(GetWhich(SID_PRINTTEXT), m_pText->IsChecked())); + rSet.Put(SfxBoolItem(GetWhich(SID_PRINTFRAME), m_pFrame->IsChecked())); + rSet.Put(SfxBoolItem(GetWhich(SID_NO_RIGHT_SPACES), m_pNoRightSpaces->IsChecked())); + rSet.Put(SfxBoolItem(GetWhich(SID_SAVE_ONLY_USED_SYMBOLS), m_pSaveOnlyUsedSymbols->IsChecked())); return true; } @@ -209,19 +205,19 @@ void SmPrintOptionsTabPage::Reset(const SfxItemSet& rSet) { SmPrintSize ePrintSize = (SmPrintSize)((const SfxUInt16Item &)rSet.Get(GetWhich(SID_PRINTSIZE))).GetValue(); - aSizeNormal.Check(ePrintSize == PRINT_SIZE_NORMAL); - aSizeScaled.Check(ePrintSize == PRINT_SIZE_SCALED); - aSizeZoomed.Check(ePrintSize == PRINT_SIZE_ZOOMED); + m_pSizeNormal->Check(ePrintSize == PRINT_SIZE_NORMAL); + m_pSizeScaled->Check(ePrintSize == PRINT_SIZE_SCALED); + m_pSizeZoomed->Check(ePrintSize == PRINT_SIZE_ZOOMED); - aZoom.Enable(aSizeZoomed.IsChecked()); + m_pZoom->Enable(m_pSizeZoomed->IsChecked()); - aZoom.SetValue(((const SfxUInt16Item &)rSet.Get(GetWhich(SID_PRINTZOOM))).GetValue()); + m_pZoom->SetValue(((const SfxUInt16Item &)rSet.Get(GetWhich(SID_PRINTZOOM))).GetValue()); - aTitle.Check(((const SfxBoolItem &)rSet.Get(GetWhich(SID_PRINTTITLE))).GetValue()); - aText.Check(((const SfxBoolItem &)rSet.Get(GetWhich(SID_PRINTTEXT))).GetValue()); - aFrame.Check(((const SfxBoolItem &)rSet.Get(GetWhich(SID_PRINTFRAME))).GetValue()); - aNoRightSpaces.Check(((const SfxBoolItem &)rSet.Get(GetWhich(SID_NO_RIGHT_SPACES))).GetValue()); - aSaveOnlyUsedSymbols.Check(((const SfxBoolItem &)rSet.Get(GetWhich(SID_SAVE_ONLY_USED_SYMBOLS))).GetValue()); + m_pTitle->Check(((const SfxBoolItem &)rSet.Get(GetWhich(SID_PRINTTITLE))).GetValue()); + m_pText->Check(((const SfxBoolItem &)rSet.Get(GetWhich(SID_PRINTTEXT))).GetValue()); + m_pFrame->Check(((const SfxBoolItem &)rSet.Get(GetWhich(SID_PRINTFRAME))).GetValue()); + m_pNoRightSpaces->Check(((const SfxBoolItem &)rSet.Get(GetWhich(SID_NO_RIGHT_SPACES))).GetValue()); + m_pSaveOnlyUsedSymbols->Check(((const SfxBoolItem &)rSet.Get(GetWhich(SID_SAVE_ONLY_USED_SYMBOLS))).GetValue()); } diff --git a/starmath/source/dialog.hrc b/starmath/source/dialog.hrc index 1266d1afaba1..a726226a2e08 100644 --- a/starmath/source/dialog.hrc +++ b/starmath/source/dialog.hrc @@ -20,22 +20,6 @@ #ifndef _DIALOG_HRC_ #define _DIALOG_HRC_ - -#define FL_PRINTOPTIONS 10 -#define CB_TITLEROW 11 -#define CB_EQUATION_TEXT 12 -#define CB_FRAME 13 - -#define FL_PRINT_FORMAT 20 -#define RB_ORIGINAL_SIZE 21 -#define RB_FIT_TO_PAGE 22 -#define RB_ZOOM 23 -#define MF_ZOOM 24 - -#define FL_MISC_OPTIONS 30 -#define CB_IGNORE_SPACING 31 -#define CB_SAVE_ONLY_USED_SYMBOLS 32 - #define FT_FONTS_SUBSET 110 #define LB_FONTS_SUBSET 111 diff --git a/starmath/source/smres.src b/starmath/source/smres.src index f2e114eddff4..7a7177e76f48 100644 --- a/starmath/source/smres.src +++ b/starmath/source/smres.src @@ -452,111 +452,6 @@ ModalDialog RID_FONTTYPEDIALOG }; }; -TabPage RID_PRINTOPTIONPAGE -{ - HelpID = "starmath:TabPage:RID_PRINTOPTIONPAGE"; - OutputSize = TRUE ; - SVLook = TRUE ; - Size = MAP_APPFONT ( TP_WIDTH , TP_HEIGHT ) ; - Text [ en-US ] = "Formula Options:Settings"; - FixedLine FL_PRINTOPTIONS - { - Pos = MAP_APPFONT ( 6 , 3 ) ; - Size = MAP_APPFONT ( 248 , 8 ) ; - Text [ en-US ] = "Print options"; - }; - CheckBox CB_TITLEROW - { - HelpID = "starmath:CheckBox:RID_PRINTOPTIONPAGE:CB_TITLEROW"; - TabStop = TRUE ; - Pos = MAP_APPFONT ( 12 , 14 ) ; - Size = MAP_APPFONT ( 68 , 10 ) ; - Text [ en-US ] = "~Title row" ; - }; - CheckBox CB_EQUATION_TEXT - { - HelpID = "starmath:CheckBox:RID_PRINTOPTIONPAGE:CB_EQUATION_TEXT"; - TabStop = TRUE ; - Pos = MAP_APPFONT ( 12 , 28 ) ; - Size = MAP_APPFONT ( 68 , 10 ) ; - Text [ en-US ] = "~Formula text" ; - }; - CheckBox CB_FRAME - { - HelpID = "starmath:CheckBox:RID_PRINTOPTIONPAGE:CB_FRAME"; - TabStop = TRUE ; - Pos = MAP_APPFONT ( 12 , 42 ) ; - Size = MAP_APPFONT ( 68 , 10 ) ; - Text [ en-US ] = "B~order" ; - }; - FixedLine FL_PRINT_FORMAT - { - Pos = MAP_APPFONT ( 6 , 58 ) ; - Size = MAP_APPFONT ( 248 , 8 ) ; - Text [ en-US ] = "Print format" ; - }; - RadioButton RB_ORIGINAL_SIZE - { - HelpID = "starmath:RadioButton:RID_PRINTOPTIONPAGE:RB_ORIGINAL_SIZE"; - TabStop = TRUE ; - Pos = MAP_APPFONT ( 12 , 69 ) ; - Size = MAP_APPFONT ( 90 , 10 ) ; - Text [ en-US ] = "O~riginal size" ; - }; - RadioButton RB_FIT_TO_PAGE - { - HelpID = "starmath:RadioButton:RID_PRINTOPTIONPAGE:RB_FIT_TO_PAGE"; - TabStop = TRUE ; - Pos = MAP_APPFONT ( 12 , 83 ) ; - Size = MAP_APPFONT ( 90 , 10 ) ; - Text [ en-US ] = "Fit to ~page" ; - }; - RadioButton RB_ZOOM - { - HelpID = "starmath:RadioButton:RID_PRINTOPTIONPAGE:RB_ZOOM"; - Pos = MAP_APPFONT ( 12 , 97 ) ; - Size = MAP_APPFONT ( 90 , 10 ) ; - Text [ en-US ] = "~Scaling" ; - TabStop = TRUE ; - }; - MetricField MF_ZOOM - { - HelpID = "starmath:MetricField:RID_PRINTOPTIONPAGE:MF_ZOOM"; - Border = TRUE ; - Pos = MAP_APPFONT ( 18 , 111 ) ; - Size = MAP_APPFONT ( 30 , 12 ) ; - TabStop = TRUE ; - Left = TRUE ; - Repeat = TRUE ; - Spin = TRUE ; - Minimum = 10 ; - Maximum = 400 ; - Unit = FUNIT_CUSTOM ; - CustomUnitText = "%" ; - }; - FixedLine FL_MISC_OPTIONS - { - Pos = MAP_APPFONT ( 6 , 129 ) ; - Size = MAP_APPFONT ( 248 , 8 ) ; - Text [ en-US ] = "Miscellaneous options"; - }; - CheckBox CB_IGNORE_SPACING - { - HelpID = "starmath:CheckBox:RID_PRINTOPTIONPAGE:CB_IGNORE_SPACING"; - TabStop = TRUE ; - Pos = MAP_APPFONT ( 12 , 140 ) ; - Size = MAP_APPFONT ( 236 , 10 ) ; - Text [ en-US ] = "Ig~nore ~~ and ` at the end of the line"; - }; - CheckBox CB_SAVE_ONLY_USED_SYMBOLS - { - TabStop = TRUE ; - Pos = MAP_APPFONT ( 12 , 154 ) ; - Size = MAP_APPFONT ( 236 , 10 ) ; - Text [ en-US ] = "Embed only used symbols (smaller file size)"; - }; -}; - ModalDialog RID_SYMDEFINEDIALOG { HelpID = "starmath:ModalDialog:RID_SYMDEFINEDIALOG"; diff --git a/starmath/uiconfig/smath/ui/smathsettings.ui b/starmath/uiconfig/smath/ui/smathsettings.ui new file mode 100644 index 000000000000..c7d6c776d5e0 --- /dev/null +++ b/starmath/uiconfig/smath/ui/smathsettings.ui @@ -0,0 +1,290 @@ +<?xml version="1.0" encoding="UTF-8"?> +<interface> + <!-- interface-requires gtk+ 3.0 --> + <object class="GtkAdjustment" id="adjustment1"> + <property name="lower">10</property> + <property name="upper">400</property> + <property name="step_increment">1</property> + <property name="page_increment">10</property> + </object> + <object class="GtkBox" id="SmathSettings"> + <property name="visible">True</property> + <property name="can_focus">False</property> + <property name="hexpand">True</property> + <property name="vexpand">True</property> + <property name="orientation">vertical</property> + <child> + <object class="GtkFrame" id="contents"> + <property name="visible">True</property> + <property name="can_focus">False</property> + <property name="label_xalign">0</property> + <property name="shadow_type">none</property> + <child> + <object class="GtkAlignment" id="alignment1"> + <property name="visible">True</property> + <property name="can_focus">False</property> + <property name="top_padding">6</property> + <property name="left_padding">12</property> + <child> + <object class="GtkBox" id="box2"> + <property name="visible">True</property> + <property name="can_focus">False</property> + <property name="orientation">vertical</property> + <property name="spacing">6</property> + <child> + <object class="GtkCheckButton" id="title"> + <property name="label" translatable="yes">_Title row</property> + <property name="visible">True</property> + <property name="can_focus">True</property> + <property name="receives_default">False</property> + <property name="use_underline">True</property> + <property name="xalign">0</property> + <property name="draw_indicator">True</property> + </object> + <packing> + <property name="expand">False</property> + <property name="fill">True</property> + <property name="position">0</property> + </packing> + </child> + <child> + <object class="GtkCheckButton" id="text"> + <property name="label" translatable="yes">_Formula text</property> + <property name="visible">True</property> + <property name="can_focus">True</property> + <property name="receives_default">False</property> + <property name="use_underline">True</property> + <property name="xalign">0</property> + <property name="draw_indicator">True</property> + </object> + <packing> + <property name="expand">False</property> + <property name="fill">True</property> + <property name="position">1</property> + </packing> + </child> + <child> + <object class="GtkCheckButton" id="frame"> + <property name="label" translatable="yes">B_order</property> + <property name="visible">True</property> + <property name="can_focus">True</property> + <property name="receives_default">False</property> + <property name="use_underline">True</property> + <property name="xalign">0</property> + <property name="draw_indicator">True</property> + </object> + <packing> + <property name="expand">False</property> + <property name="fill">True</property> + <property name="position">2</property> + </packing> + </child> + </object> + </child> + </object> + </child> + <child type="label"> + <object class="GtkLabel" id="label4"> + <property name="visible">True</property> + <property name="can_focus">False</property> + <property name="label" translatable="yes">Print options</property> + <attributes> + <attribute name="weight" value="bold"/> + </attributes> + </object> + </child> + </object> + <packing> + <property name="expand">False</property> + <property name="fill">True</property> + <property name="position">0</property> + </packing> + </child> + <child> + <object class="GtkFrame" id="size"> + <property name="visible">True</property> + <property name="can_focus">False</property> + <property name="label_xalign">0</property> + <property name="shadow_type">none</property> + <child> + <object class="GtkAlignment" id="alignment2"> + <property name="visible">True</property> + <property name="can_focus">False</property> + <property name="top_padding">6</property> + <property name="left_padding">12</property> + <child> + <object class="GtkBox" id="box1"> + <property name="visible">True</property> + <property name="can_focus">False</property> + <property name="orientation">vertical</property> + <property name="spacing">6</property> + <child> + <object class="GtkRadioButton" id="sizenormal"> + <property name="label" translatable="yes">O_riginal size</property> + <property name="visible">True</property> + <property name="can_focus">True</property> + <property name="receives_default">False</property> + <property name="use_underline">True</property> + <property name="xalign">0</property> + <property name="active">True</property> + <property name="draw_indicator">True</property> + <property name="group">sizescaled</property> + </object> + <packing> + <property name="expand">False</property> + <property name="fill">True</property> + <property name="position">0</property> + </packing> + </child> + <child> + <object class="GtkRadioButton" id="sizescaled"> + <property name="label" translatable="yes">Fit to _page</property> + <property name="visible">True</property> + <property name="can_focus">True</property> + <property name="receives_default">False</property> + <property name="use_underline">True</property> + <property name="xalign">0</property> + <property name="draw_indicator">True</property> + <property name="group">sizezoomed</property> + </object> + <packing> + <property name="expand">False</property> + <property name="fill">True</property> + <property name="position">1</property> + </packing> + </child> + <child> + <object class="GtkBox" id="box3"> + <property name="visible">True</property> + <property name="can_focus">False</property> + <property name="spacing">6</property> + <child> + <object class="GtkRadioButton" id="sizezoomed"> + <property name="label" translatable="yes">_Scaling</property> + <property name="visible">True</property> + <property name="can_focus">True</property> + <property name="receives_default">False</property> + <property name="use_underline">True</property> + <property name="xalign">0</property> + <property name="draw_indicator">True</property> + <property name="group">sizenormal</property> + </object> + <packing> + <property name="expand">False</property> + <property name="fill">True</property> + <property name="position">0</property> + </packing> + </child> + <child> + <object class="GtkSpinButton" id="zoom:0%"> + <property name="visible">True</property> + <property name="can_focus">True</property> + <property name="invisible_char">●</property> + <property name="adjustment">adjustment1</property> + </object> + <packing> + <property name="expand">False</property> + <property name="fill">True</property> + <property name="position">1</property> + </packing> + </child> + </object> + <packing> + <property name="expand">False</property> + <property name="fill">True</property> + <property name="position">2</property> + </packing> + </child> + </object> + </child> + </object> + </child> + <child type="label"> + <object class="GtkLabel" id="label5"> + <property name="visible">True</property> + <property name="can_focus">False</property> + <property name="label" translatable="yes">Print format</property> + <attributes> + <attribute name="weight" value="bold"/> + </attributes> + </object> + </child> + </object> + <packing> + <property name="expand">False</property> + <property name="fill">True</property> + <property name="position">1</property> + </packing> + </child> + <child> + <object class="GtkFrame" id="contents1"> + <property name="visible">True</property> + <property name="can_focus">False</property> + <property name="label_xalign">0</property> + <property name="shadow_type">none</property> + <child> + <object class="GtkAlignment" id="alignment3"> + <property name="visible">True</property> + <property name="can_focus">False</property> + <property name="top_padding">6</property> + <property name="left_padding">12</property> + <child> + <object class="GtkBox" id="box4"> + <property name="visible">True</property> + <property name="can_focus">False</property> + <property name="orientation">vertical</property> + <property name="spacing">6</property> + <child> + <object class="GtkCheckButton" id="norightspaces"> + <property name="label" translatable="yes">Ig_nore _~ and ` at the end of the line</property> + <property name="visible">True</property> + <property name="can_focus">True</property> + <property name="receives_default">False</property> + <property name="use_underline">True</property> + <property name="xalign">0</property> + <property name="draw_indicator">True</property> + </object> + <packing> + <property name="expand">False</property> + <property name="fill">True</property> + <property name="position">0</property> + </packing> + </child> + <child> + <object class="GtkCheckButton" id="saveonlyusedsymbols"> + <property name="label" translatable="yes">Embed only used symbols (smaller file size)</property> + <property name="visible">True</property> + <property name="can_focus">True</property> + <property name="receives_default">False</property> + <property name="xalign">0</property> + <property name="draw_indicator">True</property> + </object> + <packing> + <property name="expand">False</property> + <property name="fill">True</property> + <property name="position">1</property> + </packing> + </child> + </object> + </child> + </object> + </child> + <child type="label"> + <object class="GtkLabel" id="label1"> + <property name="visible">True</property> + <property name="can_focus">False</property> + <property name="label" translatable="yes">Miscellaneous options</property> + <attributes> + <attribute name="weight" value="bold"/> + </attributes> + </object> + </child> + </object> + <packing> + <property name="expand">False</property> + <property name="fill">True</property> + <property name="position">2</property> + </packing> + </child> + </object> +</interface> |