Kaydet (Commit) cf22f952 authored tarafından Palenik Mihály's avatar Palenik Mihály Kaydeden (comit) David Tardon

Convert DLG_DATABASE_TYPE_CHANGE to .ui

Conflicts:
	dbaccess/source/ui/inc/dbu_resource.hrc

Change-Id: I854d1c37d5a8b4944b786b9a4cace8b3f8b5e093
üst fbc7cfe5
...@@ -42,6 +42,7 @@ $(eval $(call gb_UIConfig_add_uifiles,dbaccess, \ ...@@ -42,6 +42,7 @@ $(eval $(call gb_UIConfig_add_uifiles,dbaccess, \
dbaccess/uiconfig/ui/querypropertiesdialog \ dbaccess/uiconfig/ui/querypropertiesdialog \
dbaccess/uiconfig/ui/relationdialog \ dbaccess/uiconfig/ui/relationdialog \
dbaccess/uiconfig/ui/rowheightdialog \ dbaccess/uiconfig/ui/rowheightdialog \
dbaccess/uiconfig/ui/rtfcopytabledialog \
dbaccess/uiconfig/ui/savedialog \ dbaccess/uiconfig/ui/savedialog \
dbaccess/uiconfig/ui/specialjdbcconnectionpage \ dbaccess/uiconfig/ui/specialjdbcconnectionpage \
dbaccess/uiconfig/ui/specialsettingspage \ dbaccess/uiconfig/ui/specialsettingspage \
......
...@@ -73,18 +73,8 @@ ...@@ -73,18 +73,8 @@
Size = MAP_APPFONT ( 97 , EDIT_HEIGHT ) ; \ Size = MAP_APPFONT ( 97 , EDIT_HEIGHT ) ; \
}; };
ModalDialog DLG_DATABASE_TYPE_CHANGE String STR_DATABASE_TYPE_CHANGE
{ {
OutputSize = TRUE ;
Moveable = TRUE;
Closeable = TRUE ;
Hide = TRUE;
HelpId = HID_DSADMIN_TYPE_DIALOG;
TabControl 1
{
OutputSize = TRUE ;
};
Text [ en-US ] = "Database properties" ; Text [ en-US ] = "Database properties" ;
}; };
......
...@@ -68,7 +68,7 @@ ODbTypeWizDialog::ODbTypeWizDialog(Window* _pParent ...@@ -68,7 +68,7 @@ ODbTypeWizDialog::ODbTypeWizDialog(Window* _pParent
,const Reference< XComponentContext >& _rxORB ,const Reference< XComponentContext >& _rxORB
,const ::com::sun::star::uno::Any& _aDataSourceName ,const ::com::sun::star::uno::Any& _aDataSourceName
) )
:OWizardMachine(_pParent, ModuleRes(DLG_DATABASE_TYPE_CHANGE), WZB_NEXT | WZB_PREVIOUS | WZB_FINISH | WZB_CANCEL | WZB_HELP ) :OWizardMachine(_pParent, WZB_NEXT | WZB_PREVIOUS | WZB_FINISH | WZB_CANCEL | WZB_HELP )
,m_pOutSet(NULL) ,m_pOutSet(NULL)
,m_bResetting(false) ,m_bResetting(false)
,m_bApplied(false) ,m_bApplied(false)
...@@ -98,8 +98,8 @@ ODbTypeWizDialog::ODbTypeWizDialog(Window* _pParent ...@@ -98,8 +98,8 @@ ODbTypeWizDialog::ODbTypeWizDialog(Window* _pParent
DbuTypeCollectionItem* pCollectionItem = PTR_CAST(DbuTypeCollectionItem, _pItems->GetItem(DSID_TYPECOLLECTION)); DbuTypeCollectionItem* pCollectionItem = PTR_CAST(DbuTypeCollectionItem, _pItems->GetItem(DSID_TYPECOLLECTION));
m_pCollection = pCollectionItem->getCollection(); m_pCollection = pCollectionItem->getCollection();
FreeResource();
ActivatePage(); ActivatePage();
setTitleBase(ModuleRes(STR_DATABASE_TYPE_CHANGE));
} }
ODbTypeWizDialog::~ODbTypeWizDialog() ODbTypeWizDialog::~ODbTypeWizDialog()
......
...@@ -180,7 +180,7 @@ ODbTypeWizDialogSetup::ODbTypeWizDialogSetup(Window* _pParent ...@@ -180,7 +180,7 @@ ODbTypeWizDialogSetup::ODbTypeWizDialogSetup(Window* _pParent
m_pHelp->SetUniqueId(UID_DBWIZ_HELP); m_pHelp->SetUniqueId(UID_DBWIZ_HELP);
SetRoadmapInteractive( true ); SetRoadmapInteractive( true );
ActivatePage(); ActivatePage();
SetText(ModuleRes(STR_DBWIZARDTITLE)); setTitleBase(ModuleRes(STR_DBWIZARDTITLE));
} }
void ODbTypeWizDialogSetup::declareAuthDepPath( const OUString& _sURL, PathId _nPathId, const svt::RoadmapWizardTypes::WizardPath& _rPaths) void ODbTypeWizDialogSetup::declareAuthDepPath( const OUString& _sURL, PathId _nPathId, const svt::RoadmapWizardTypes::WizardPath& _rPaths)
......
...@@ -238,11 +238,11 @@ namespace dbaui ...@@ -238,11 +238,11 @@ namespace dbaui
ODatabaseExport::TColumns m_vSourceColumns; ODatabaseExport::TColumns m_vSourceColumns;
ODatabaseExport::TColumnVector m_vSourceVec; ODatabaseExport::TColumnVector m_vSourceVec;
HelpButton m_pbHelp; HelpButton* m_pbHelp;
CancelButton m_pbCancel; CancelButton* m_pbCancel;
PushButton m_pbPrev; PushButton* m_pbPrev;
PushButton m_pbNext; PushButton* m_pbNext;
OKButton m_pbFinish; PushButton* m_pbFinish;
OTypeInfoMap m_aTypeInfo; OTypeInfoMap m_aTypeInfo;
::std::vector<OTypeInfoMap::iterator> m_aTypeInfoIndex; ::std::vector<OTypeInfoMap::iterator> m_aTypeInfoIndex;
...@@ -325,7 +325,7 @@ namespace dbaui ...@@ -325,7 +325,7 @@ namespace dbaui
virtual ~OCopyTableWizard(); virtual ~OCopyTableWizard();
virtual long DeactivatePage() SAL_OVERRIDE; virtual long DeactivatePage() SAL_OVERRIDE;
OKButton& GetOKButton() { return m_pbFinish; } OKButton& GetOKButton() { return static_cast<OKButton&>(*m_pbFinish); }
Wizard_Button_Style GetPressedButton() const { return m_ePressed; } Wizard_Button_Style GetPressedButton() const { return m_ePressed; }
void EnableButton(Wizard_Button_Style eStyle, bool bEnable); void EnableButton(Wizard_Button_Style eStyle, bool bEnable);
void AddWizardPage(OWizardPage* pPage); // delete page from OCopyTableWizard void AddWizardPage(OWizardPage* pPage); // delete page from OCopyTableWizard
......
...@@ -150,9 +150,11 @@ ...@@ -150,9 +150,11 @@
#define STR_ORACLE_DRIVERCLASSTEXT RID_STR_DLG_START + 99 #define STR_ORACLE_DRIVERCLASSTEXT RID_STR_DLG_START + 99
#define STR_ORACLE_HELPTEXT RID_STR_DLG_START + 100 #define STR_ORACLE_HELPTEXT RID_STR_DLG_START + 100
#define STR_DATABASE_TYPE_CHANGE RID_STR_DLG_START + 101
// please adjust checking before insert new strings // please adjust checking before insert new strings
#define LAST_STR_HERE RID_STR_DLG_START + 101 #define LAST_STR_HERE RID_STR_DLG_START + 102
#if LAST_STR_HERE > RID_STR_DLG_END #if LAST_STR_HERE > RID_STR_DLG_END
#error Resource-Id Overflow in #file, #line #error Resource-Id Overflow in #file, #line
......
...@@ -40,6 +40,10 @@ ...@@ -40,6 +40,10 @@
#define STR_INVALID_TABLE_NAME RID_STR_MISC_START + 16 #define STR_INVALID_TABLE_NAME RID_STR_MISC_START + 16
#define STR_INVALID_TABLE_NAME_LENGTH RID_STR_MISC_START + 17 #define STR_INVALID_TABLE_NAME_LENGTH RID_STR_MISC_START + 17
#define STR_WIZ_PB_PREV RID_STR_MISC_START + 18
#define STR_WIZ_PB_NEXT RID_STR_MISC_START + 19
#define STR_WIZ_PB_OK RID_STR_MISC_START + 20
// please adjust checking before insert new strings // please adjust checking before insert new strings
#if STR_INVALID_TABLE_NAME_LENGTH > RID_STR_MISC_END #if STR_INVALID_TABLE_NAME_LENGTH > RID_STR_MISC_END
......
...@@ -45,28 +45,28 @@ ...@@ -45,28 +45,28 @@
#define RID_STR_CONTROL_END RID_STR_CONTROL_START + 30 // 40 - 69 #define RID_STR_CONTROL_END RID_STR_CONTROL_START + 30 // 40 - 69
#define RID_STR_DLG_START RID_STR_CONTROL_END #define RID_STR_DLG_START RID_STR_CONTROL_END
#define RID_STR_DLG_END RID_STR_DLG_START + 113 // 70 - 182 #define RID_STR_DLG_END RID_STR_DLG_START + 144 // 70 - 183 + 30 free
#define RID_STR_MISC_START RID_STR_DLG_END #define RID_STR_MISC_START RID_STR_DLG_END
#define RID_STR_MISC_END RID_STR_MISC_START + 20 // 183 - 202 #define RID_STR_MISC_END RID_STR_MISC_START + 20 // 214 - 233
#define RID_STR_QRY_START RID_STR_MISC_END #define RID_STR_QRY_START RID_STR_MISC_END
#define RID_STR_QRY_END RID_STR_QRY_START + 80 // 203 - 282 #define RID_STR_QRY_END RID_STR_QRY_START + 80 // 234 - 313
#define RID_STR_TBL_START RID_STR_QRY_END #define RID_STR_TBL_START RID_STR_QRY_END
#define RID_STR_TBL_END RID_STR_TBL_START + 80 // 283 - 362 #define RID_STR_TBL_END RID_STR_TBL_START + 80 // 314 - 393
#define RID_STR_REL_START RID_STR_TBL_END #define RID_STR_REL_START RID_STR_TBL_END
#define RID_STR_REL_END RID_STR_REL_START + 10 // 363 - 382 #define RID_STR_REL_END RID_STR_REL_START + 10 // 394 - 413
#define RID_STR_UNO_START RID_STR_REL_END #define RID_STR_UNO_START RID_STR_REL_END
#define RID_STR_UNO_END RID_STR_UNO_START + 20 // 383 - 402 #define RID_STR_UNO_END RID_STR_UNO_START + 20 // 414 - 433
#define RID_STR_GEN_START RID_STR_UNO_END #define RID_STR_GEN_START RID_STR_UNO_END
#define RID_STR_GEN_END RID_STR_GEN_START + 56 // 403 - 458 #define RID_STR_GEN_END RID_STR_GEN_START + 56 // 434 - 489
#define RID_STR_APP_START RID_STR_GEN_END #define RID_STR_APP_START RID_STR_GEN_END
#define RID_STR_APP_END RID_STR_APP_START + 40 // 459 - 498 #define RID_STR_APP_END RID_STR_APP_START + 40 // 490 - 529
#if RID_STR_GEN_END > RID_DBACCESS_END #if RID_STR_GEN_END > RID_DBACCESS_END
#error Resource-Id Ueberlauf in #file, #line #error Resource-Id Ueberlauf in #file, #line
...@@ -77,7 +77,6 @@ ...@@ -77,7 +77,6 @@
#define DLG_JOIN_TABADD RID_DIALOG_START + 14 #define DLG_JOIN_TABADD RID_DIALOG_START + 14
// FREE // FREE
#define WIZ_RTFCOPYTABLE RID_DIALOG_START + 16
// FREE // FREE
// FREE // FREE
#define DLG_INDEXDESIGN RID_DIALOG_START + 19 #define DLG_INDEXDESIGN RID_DIALOG_START + 19
...@@ -86,7 +85,6 @@ ...@@ -86,7 +85,6 @@
// FREE // FREE
// FREE // FREE
#define DLG_COLLECTION_VIEW RID_DIALOG_START + 27 #define DLG_COLLECTION_VIEW RID_DIALOG_START + 27
#define DLG_DATABASE_TYPE_CHANGE RID_DIALOG_START + 28
// tab pages // tab pages
......
...@@ -504,12 +504,7 @@ OCopyTableWizard::OCopyTableWizard( Window * pParent, const OUString& _rDefaultN ...@@ -504,12 +504,7 @@ OCopyTableWizard::OCopyTableWizard( Window * pParent, const OUString& _rDefaultN
const ICopyTableSourceObject& _rSourceObject, const Reference< XConnection >& _xSourceConnection, const ICopyTableSourceObject& _rSourceObject, const Reference< XConnection >& _xSourceConnection,
const Reference< XConnection >& _xConnection, const Reference< XComponentContext >& _rxContext, const Reference< XConnection >& _xConnection, const Reference< XComponentContext >& _rxContext,
const Reference< XInteractionHandler>& _xInteractionHandler) const Reference< XInteractionHandler>& _xInteractionHandler)
: WizardDialog( pParent, ModuleRes(WIZ_RTFCOPYTABLE)) : WizardDialog( pParent, "RTFCopyTable", "dbaccess/ui/rtfcopytabledialog.ui")
,m_pbHelp( this , ModuleRes(PB_HELP))
,m_pbCancel( this , ModuleRes(PB_CANCEL))
,m_pbPrev( this , ModuleRes(PB_PREV))
,m_pbNext( this , ModuleRes(PB_NEXT))
,m_pbFinish( this , ModuleRes(PB_OK))
,m_mNameMapping(_xConnection->getMetaData().is() && _xConnection->getMetaData()->supportsMixedCaseQuotedIdentifiers()) ,m_mNameMapping(_xConnection->getMetaData().is() && _xConnection->getMetaData()->supportsMixedCaseQuotedIdentifiers())
,m_xDestConnection( _xConnection ) ,m_xDestConnection( _xConnection )
,m_rSourceObject( _rSourceObject ) ,m_rSourceObject( _rSourceObject )
...@@ -601,13 +596,8 @@ OCopyTableWizard::OCopyTableWizard( Window* pParent, const OUString& _rDefaultNa ...@@ -601,13 +596,8 @@ OCopyTableWizard::OCopyTableWizard( Window* pParent, const OUString& _rDefaultNa
const ODatabaseExport::TColumns& _rSourceColumns, const ODatabaseExport::TColumnVector& _rSourceColVec, const ODatabaseExport::TColumns& _rSourceColumns, const ODatabaseExport::TColumnVector& _rSourceColVec,
const Reference< XConnection >& _xConnection, const Reference< XNumberFormatter >& _xFormatter, const Reference< XConnection >& _xConnection, const Reference< XNumberFormatter >& _xFormatter,
TypeSelectionPageFactory _pTypeSelectionPageFactory, SvStream& _rTypeSelectionPageArg, const Reference< XComponentContext >& _rxContext ) TypeSelectionPageFactory _pTypeSelectionPageFactory, SvStream& _rTypeSelectionPageArg, const Reference< XComponentContext >& _rxContext )
:WizardDialog( pParent, ModuleRes(WIZ_RTFCOPYTABLE)) :WizardDialog( pParent, "RTFCopyTable", "dbaccess/ui/rtfcopytabledialog.ui")
,m_vSourceColumns(_rSourceColumns) ,m_vSourceColumns(_rSourceColumns)
,m_pbHelp( this , ModuleRes(PB_HELP))
,m_pbCancel( this , ModuleRes(PB_CANCEL))
,m_pbPrev( this , ModuleRes(PB_PREV))
,m_pbNext( this , ModuleRes(PB_NEXT))
,m_pbFinish( this , ModuleRes(PB_OK))
,m_mNameMapping(_xConnection->getMetaData().is() && _xConnection->getMetaData()->supportsMixedCaseQuotedIdentifiers()) ,m_mNameMapping(_xConnection->getMetaData().is() && _xConnection->getMetaData()->supportsMixedCaseQuotedIdentifiers())
,m_xDestConnection( _xConnection ) ,m_xDestConnection( _xConnection )
,m_rSourceObject( DummyCopySource::Instance() ) ,m_rSourceObject( DummyCopySource::Instance() )
...@@ -649,32 +639,44 @@ OCopyTableWizard::OCopyTableWizard( Window* pParent, const OUString& _rDefaultNa ...@@ -649,32 +639,44 @@ OCopyTableWizard::OCopyTableWizard( Window* pParent, const OUString& _rDefaultNa
void OCopyTableWizard::construct() void OCopyTableWizard::construct()
{ {
AddButton( &m_pbHelp, WIZARDDIALOG_BUTTON_STDOFFSET_X ); AddButton( m_pbHelp = new HelpButton(this, WB_TABSTOP) );
AddButton( &m_pbCancel, WIZARDDIALOG_BUTTON_STDOFFSET_X ); AddButton( m_pbCancel = new CancelButton(this, WB_TABSTOP) );
AddButton( &m_pbPrev ); AddButton( m_pbPrev = new PushButton(this, WB_TABSTOP));
AddButton( &m_pbNext, WIZARDDIALOG_BUTTON_STDOFFSET_X ); AddButton( m_pbNext = new PushButton(this, WB_TABSTOP));
AddButton( &m_pbFinish ); AddButton( m_pbFinish = new PushButton(this, WB_TABSTOP));
m_pbPrev.SetClickHdl( LINK( this, OCopyTableWizard, ImplPrevHdl ) ); m_pbHelp->SetSizePixel( LogicToPixel( Size( 50, 14 ), MAP_APPFONT ) );
m_pbNext.SetClickHdl( LINK( this, OCopyTableWizard, ImplNextHdl ) ); m_pbCancel->SetSizePixel( LogicToPixel( Size( 50, 14 ), MAP_APPFONT ) );
m_pbFinish.SetClickHdl( LINK( this, OCopyTableWizard, ImplOKHdl ) ); m_pbPrev->SetSizePixel( LogicToPixel( Size( 50, 14 ), MAP_APPFONT ) );
m_pbNext->SetSizePixel( LogicToPixel( Size( 50, 14 ), MAP_APPFONT ) );
m_pbFinish->SetSizePixel( LogicToPixel( Size( 50, 14 ), MAP_APPFONT ) );
SetActivatePageHdl( LINK( this, OCopyTableWizard, ImplActivateHdl ) ); m_pbPrev->SetText(ModuleRes(STR_WIZ_PB_PREV));
m_pbNext->SetText(ModuleRes(STR_WIZ_PB_NEXT));
m_pbFinish->SetText(ModuleRes(STR_WIZ_PB_OK));
m_pbHelp->Show();
m_pbCancel->Show();
m_pbPrev->Show();
m_pbNext->Show();
m_pbFinish->Show();
m_pbPrev->SetClickHdl( LINK( this, OCopyTableWizard, ImplPrevHdl ) );
m_pbNext->SetClickHdl( LINK( this, OCopyTableWizard, ImplNextHdl ) );
m_pbFinish->SetClickHdl( LINK( this, OCopyTableWizard, ImplOKHdl ) );
SetPrevButton( &m_pbPrev ); SetActivatePageHdl( LINK( this, OCopyTableWizard, ImplActivateHdl ) );
SetNextButton( &m_pbNext );
ShowButtonFixedLine( true ); SetPrevButton( m_pbPrev );
SetNextButton( m_pbNext );
m_pbNext.GrabFocus(); m_pbNext->GrabFocus();
if (m_vDestColumns.size()) if (m_vDestColumns.size())
// source is a html or rtf table // source is a html or rtf table
m_pbNext.SetStyle(m_pbFinish.GetStyle() | WB_DEFBUTTON); m_pbNext->SetStyle(m_pbFinish->GetStyle() | WB_DEFBUTTON);
else else
m_pbFinish.SetStyle(m_pbFinish.GetStyle() | WB_DEFBUTTON); m_pbFinish->SetStyle(m_pbFinish->GetStyle() | WB_DEFBUTTON);
FreeResource();
m_pTypeInfo = TOTypeInfoSP(new OTypeInfo()); m_pTypeInfo = TOTypeInfoSP(new OTypeInfo());
m_pTypeInfo->aUIName = m_sTypeNames.getToken(TYPE_OTHER, ';'); m_pTypeInfo->aUIName = m_sTypeNames.getToken(TYPE_OTHER, ';');
...@@ -701,6 +703,12 @@ OCopyTableWizard::~OCopyTableWizard() ...@@ -701,6 +703,12 @@ OCopyTableWizard::~OCopyTableWizard()
m_aTypeInfoIndex.clear(); m_aTypeInfoIndex.clear();
m_aTypeInfo.clear(); m_aTypeInfo.clear();
m_aDestTypeInfoIndex.clear(); m_aDestTypeInfoIndex.clear();
delete m_pbHelp;
delete m_pbCancel;
delete m_pbPrev;
delete m_pbNext;
delete m_pbFinish;
} }
IMPL_LINK_NOARG(OCopyTableWizard, ImplPrevHdl) IMPL_LINK_NOARG(OCopyTableWizard, ImplPrevHdl)
...@@ -949,20 +957,20 @@ void OCopyTableWizard::CheckButtons() ...@@ -949,20 +957,20 @@ void OCopyTableWizard::CheckButtons()
if(GetCurLevel() == 0) // the first page has no back button if(GetCurLevel() == 0) // the first page has no back button
{ {
if(m_nPageCount > 1) if(m_nPageCount > 1)
m_pbNext.Enable(true); m_pbNext->Enable(true);
else else
m_pbNext.Enable(false); m_pbNext->Enable(false);
m_pbPrev.Enable(false); m_pbPrev->Enable(false);
} }
else if(GetCurLevel() == m_nPageCount-1) // the last page has no next button else if(GetCurLevel() == m_nPageCount-1) // the last page has no next button
{ {
m_pbNext.Enable(false); m_pbNext->Enable(false);
m_pbPrev.Enable(true); m_pbPrev->Enable(true);
} }
else else
{ {
m_pbPrev.Enable(true); m_pbPrev->Enable(true);
// next already has its state // next already has its state
} }
} }
...@@ -971,11 +979,11 @@ void OCopyTableWizard::EnableButton(Wizard_Button_Style eStyle, bool bEnable) ...@@ -971,11 +979,11 @@ void OCopyTableWizard::EnableButton(Wizard_Button_Style eStyle, bool bEnable)
{ {
Button* pButton; Button* pButton;
if(eStyle == WIZARD_NEXT) if(eStyle == WIZARD_NEXT)
pButton = &m_pbNext; pButton = m_pbNext;
else if(eStyle == WIZARD_PREV) else if(eStyle == WIZARD_PREV)
pButton = &m_pbPrev; pButton = m_pbPrev;
else else
pButton = &m_pbFinish; pButton = m_pbFinish;
pButton->Enable(bEnable); pButton->Enable(bEnable);
} }
......
...@@ -22,11 +22,6 @@ ...@@ -22,11 +22,6 @@
#define LB_NEW_COLUMN_NAMES 2 #define LB_NEW_COLUMN_NAMES 2
#define PB_AUTO 5 #define PB_AUTO 5
#define PB_OK 6
#define PB_CANCEL 7
#define PB_HELP 8
#define PB_NEXT 9
#define PB_PREV 10
#define IB_COLUMN_UP 12 #define IB_COLUMN_UP 12
#define IB_COLUMN_DOWN 13 #define IB_COLUMN_DOWN 13
#define IB_COLUMN_UP_RIGHT 14 #define IB_COLUMN_UP_RIGHT 14
......
...@@ -51,51 +51,19 @@ String STR_WIZ_NAME_MATCHING_TITEL ...@@ -51,51 +51,19 @@ String STR_WIZ_NAME_MATCHING_TITEL
Text [ en-US ] = "Assign columns" ; Text [ en-US ] = "Assign columns" ;
}; };
ModalDialog WIZ_RTFCOPYTABLE String STR_WIZ_PB_PREV
{ {
HelpID = "dbaccess:ModalDialog:WIZ_RTFCOPYTABLE"; Text [ en-US ] = "< ~Back";
};
Text [ en-US ] = "Copy RTF Table" ;
OutputSize = TRUE ;
SVLook = TRUE ;
Moveable = TRUE ;
Closeable = TRUE ;
Hide = TRUE;
HelpButton PB_HELP String STR_WIZ_PB_NEXT
{ {
TabStop = TRUE ; Text [ en-US ] = "~Next>";
Size = MAP_APPFONT ( BUTTON_SIZE_X , BUTTON_SIZE_Y ) ; };
Text [ en-US ] = "~Help";
};
CancelButton PB_CANCEL
{
TabStop = TRUE ;
Size = MAP_APPFONT ( BUTTON_SIZE_X , BUTTON_SIZE_Y ) ;
Text [ en-US ] = "~Cancel";
};
PushButton PB_PREV
{
HelpID = "dbaccess:PushButton:WIZ_RTFCOPYTABLE:PB_PREV";
TabStop = TRUE ;
Size = MAP_APPFONT ( BUTTON_SIZE_X , BUTTON_SIZE_Y ) ;
Text [ en-US ] = "< ~Back";
};
PushButton PB_NEXT
{
HelpID = "dbaccess:PushButton:WIZ_RTFCOPYTABLE:PB_NEXT";
TabStop = TRUE ;
Size = MAP_APPFONT ( BUTTON_SIZE_X , BUTTON_SIZE_Y ) ;
Text [ en-US ] = "~Next>";
};
OKButton PB_OK
{
TabStop = TRUE ;
Size = MAP_APPFONT ( BUTTON_SIZE_X , BUTTON_SIZE_Y ) ;
Text [ en-US ] = "C~reate";
};
String STR_WIZ_PB_OK
{
Text [ en-US ] = "C~reate";
}; };
TabPage TAB_WIZ_TYPE_SELECT TabPage TAB_WIZ_TYPE_SELECT
......
<?xml version="1.0" encoding="UTF-8"?>
<interface>
<!-- interface-requires gtk+ 3.0 -->
<object class="GtkDialog" id="RTFCopyTable">
<property name="can_focus">False</property>
<property name="hexpand">True</property>
<property name="vexpand">True</property>
<property name="border_width">6</property>
<property name="title" translatable="yes">Copy RTF Table</property>
<property name="type_hint">dialog</property>
</object>
</interface>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment