Kaydet (Commit) 5667ca14 authored tarafından Caolán McNamara's avatar Caolán McNamara

convert add relationships dialog to .ui

Change-Id: I984ff7e4fca6e7cd3529e921383bca4e6f2a464e
üst aea6aab9
......@@ -37,7 +37,6 @@ $(eval $(call gb_SrsTarget_add_files,dbaccess/dbu,\
dbaccess/source/ui/control/tabletree.src \
dbaccess/source/ui/control/undosqledit.src \
dbaccess/source/ui/dlg/admincontrols.src \
dbaccess/source/ui/dlg/adtabdlg.src \
dbaccess/source/ui/dlg/AutoControls.src \
dbaccess/source/ui/dlg/CollectionView.src \
dbaccess/source/ui/dlg/ConnectionPage.src \
......
......@@ -27,6 +27,7 @@ $(eval $(call gb_UIConfig_add_uifiles,dbaccess, \
dbaccess/uiconfig/ui/sortdialog \
dbaccess/uiconfig/ui/tablesfilterdialog \
dbaccess/uiconfig/ui/tablesfilterpage \
dbaccess/uiconfig/ui/tablesjoindialog \
dbaccess/uiconfig/ui/useradmindialog \
))
......
......@@ -88,12 +88,9 @@
#define HID_DSADMIN_PAGE_ADO "DBACCESS_HID_DSADMIN_PAGE_ADO"
#define HID_JOINSH_ADDTAB_CLOSE "DBACCESS_HID_JOINSH_ADDTAB_CLOSE"
#define HID_JOINSH_ADDTAB_TABLELIST "DBACCESS_HID_JOINSH_ADDTAB_TABLELIST"
#define HID_CTL_QRYDGNTAB "DBACCESS_HID_CTL_QRYDGNTAB"
#define HID_DLG_QRY_JOIN "DBACCESS_HID_DLG_QRY_JOIN"
#define HID_DLG_QRY_JOINTYPE "DBACCESS_HID_DLG_QRY_JOINTYPE"
#define HID_JOINSH_ADDTAB_QUERYLIST "DBACCESS_HID_JOINSH_ADDTAB_QUERYLIST"
#define HID_DLG_QRY_HELPTEXT "DBACCESS_HID_DLG_QRY_HELPTEXT"
#define HID_CTL_QRYDGNCRIT "DBACCESS_HID_CTL_QRYDGNCRIT"
......@@ -376,11 +373,6 @@
#define HID_DLG_QRY_JOIN_CONTROL "DBACCESS_HID_DLG_QRY_JOIN_CONTROL"
#define HID_MACRO_MIGRATION_BACKUP_LOCATION "DBACCESS_HID_MACRO_MIGRATION_BACKUP_LOCATION"
// this one below have hid in number space HID_SBA_START
#define HID_DLG_JOIN_TABADD "DBACCESS_HID_DLG_JOIN_TABADD"
#endif // _DBA_DBACCESS_HELPID_HRC_
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
......@@ -79,6 +79,17 @@ String STR_THUNDERBIRD_PROFILE_NAME
Text[ en-US ] = "~Thunderbird profile name";
};
String STR_ADD_TABLES
{
Text [ en-US ] = "Add Tables";
};
String STR_ADD_TABLE_OR_QUERY
{
Text [ en-US ] = "Add Table or Query" ;
};
// -------------------------------------------------------------------------------------------------
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
......@@ -18,7 +18,6 @@
*/
#include "adtabdlg.hxx"
#include "adtabdlg.hrc"
#include "sqlmessage.hxx"
#include <tools/debug.hxx>
#include <tools/diagnose_ex.h>
......@@ -316,61 +315,49 @@ bool QueryListFacade::isLeafSelected() const
}
OAddTableDlg::OAddTableDlg( Window* pParent, IAddTableDialogContext& _rContext )
:ModelessDialog( pParent, ModuleRes(DLG_JOIN_TABADD) )
,m_aCaseTables( this, ModuleRes( RB_CASE_TABLES ) )
,m_aCaseQueries( this, ModuleRes( RB_CASE_QUERIES ) )
,m_aTableList( this, ModuleRes( LB_TABLE_OR_QUERY ), sal_False )
,m_aQueryList( this, ModuleRes( LB_TABLE_OR_QUERY ) )
,aAddButton( this, ModuleRes( PB_ADDTABLE ) )
,aCloseButton( this, ModuleRes( PB_CLOSE ) )
,aHelpButton( this, ModuleRes( PB_HELP ) )
,m_rContext( _rContext )
: ModelessDialog(pParent, "TablesJoinDialog", "dbaccess/ui/tablesjoindialog.ui")
, m_rContext(_rContext)
{
// the Close-Button already has a standard help text which should not
// occur here. Therefore, resetting the text and giving a new ID
aCloseButton.SetHelpText(OUString());
aCloseButton.SetHelpId(HID_JOINSH_ADDTAB_CLOSE);
m_aTableList.SetHelpId( HID_JOINSH_ADDTAB_TABLELIST );
m_aQueryList.SetHelpId( HID_JOINSH_ADDTAB_QUERYLIST );
m_aCaseTables.SetClickHdl( LINK( this, OAddTableDlg, OnTypeSelected ) );
m_aCaseQueries.SetClickHdl( LINK( this, OAddTableDlg, OnTypeSelected ) );
aAddButton.SetClickHdl( LINK( this, OAddTableDlg, AddClickHdl ) );
aCloseButton.SetClickHdl( LINK( this, OAddTableDlg, CloseClickHdl ) );
m_aTableList.SetDoubleClickHdl( LINK( this, OAddTableDlg, TableListDoubleClickHdl ) );
m_aTableList.SetSelectHdl( LINK( this, OAddTableDlg, TableListSelectHdl ) );
m_aQueryList.SetDoubleClickHdl( LINK( this, OAddTableDlg, TableListDoubleClickHdl ) );
m_aQueryList.SetSelectHdl( LINK( this, OAddTableDlg, TableListSelectHdl ) );
m_aTableList.EnableInplaceEditing( false );
m_aTableList.SetStyle(m_aTableList.GetStyle() | WB_BORDER | WB_HASLINES |WB_HASBUTTONS | WB_HASBUTTONSATROOT | WB_HASLINESATROOT | WB_SORT | WB_HSCROLL );
m_aTableList.EnableCheckButton( NULL ); // do not show any buttons
m_aTableList.SetSelectionMode( SINGLE_SELECTION );
m_aTableList.notifyHiContrastChanged();
m_aTableList.suppressEmptyFolders();
m_aQueryList.EnableInplaceEditing( false );
m_aQueryList.SetSelectionMode( SINGLE_SELECTION );
get(m_pCaseTables, "tables");
get(m_pCaseQueries, "queries");
get(m_pTableList, "tablelist");
get(m_pQueryList, "querylist");
Size aSize(LogicToPixel(Size(106 , 122), MAP_APPFONT));
m_pTableList->set_height_request(aSize.Height());
m_pTableList->set_width_request(aSize.Width());
get(m_pQueryList, "querylist");
m_pQueryList->set_height_request(aSize.Height());
m_pQueryList->set_width_request(aSize.Width());
get(m_pAddButton, "add");
get(m_pCloseButton, "close");
m_pCaseTables->SetClickHdl( LINK( this, OAddTableDlg, OnTypeSelected ) );
m_pCaseQueries->SetClickHdl( LINK( this, OAddTableDlg, OnTypeSelected ) );
m_pAddButton->SetClickHdl( LINK( this, OAddTableDlg, AddClickHdl ) );
m_pCloseButton->SetClickHdl( LINK( this, OAddTableDlg, CloseClickHdl ) );
m_pTableList->SetDoubleClickHdl( LINK( this, OAddTableDlg, TableListDoubleClickHdl ) );
m_pTableList->SetSelectHdl( LINK( this, OAddTableDlg, TableListSelectHdl ) );
m_pQueryList->SetDoubleClickHdl( LINK( this, OAddTableDlg, TableListDoubleClickHdl ) );
m_pQueryList->SetSelectHdl( LINK( this, OAddTableDlg, TableListSelectHdl ) );
m_pTableList->EnableInplaceEditing( false );
m_pTableList->SetStyle(m_pTableList->GetStyle() | WB_BORDER | WB_HASLINES |WB_HASBUTTONS | WB_HASBUTTONSATROOT | WB_HASLINESATROOT | WB_SORT | WB_HSCROLL );
m_pTableList->EnableCheckButton( NULL ); // do not show any buttons
m_pTableList->SetSelectionMode( SINGLE_SELECTION );
m_pTableList->notifyHiContrastChanged();
m_pTableList->suppressEmptyFolders();
m_pQueryList->EnableInplaceEditing( false );
m_pQueryList->SetSelectionMode( SINGLE_SELECTION );
if ( !m_rContext.allowQueries() )
{
m_aCaseTables.Hide();
m_aCaseQueries.Hide();
long nPixelDiff = m_aTableList.GetPosPixel().Y() - m_aCaseTables.GetPosPixel().Y();
Point aListPos( m_aTableList.GetPosPixel() );
aListPos.Y() -= nPixelDiff;
Size aListSize( m_aTableList.GetSizePixel() );
aListSize.Height() += nPixelDiff;
m_aTableList.SetPosSizePixel( aListPos, aListSize );
m_pCaseTables->Hide();
m_pCaseQueries->Hide();
}
FreeResource();
SetText( getDialogTitleForContext( m_rContext ) );
}
......@@ -384,36 +371,36 @@ void OAddTableDlg::impl_switchTo( ObjectList _eList )
switch ( _eList )
{
case Tables:
m_aTableList.Show( true ); m_aCaseTables.Check( sal_True );
m_aQueryList.Show( false ); m_aCaseQueries.Check( sal_False );
m_pCurrentList.reset( new TableListFacade( m_aTableList, m_rContext.getConnection() ) );
m_aTableList.GrabFocus();
m_pTableList->Show( true ); m_pCaseTables->Check( sal_True );
m_pQueryList->Show( false ); m_pCaseQueries->Check( sal_False );
m_xCurrentList.reset( new TableListFacade( *m_pTableList, m_rContext.getConnection() ) );
m_pTableList->GrabFocus();
break;
case Queries:
m_aTableList.Show( false ); m_aCaseTables.Check( sal_False );
m_aQueryList.Show( true ); m_aCaseQueries.Check( sal_True );
m_pCurrentList.reset( new QueryListFacade( m_aQueryList, m_rContext.getConnection() ) );
m_aQueryList.GrabFocus();
m_pTableList->Show( false ); m_pCaseTables->Check( sal_False );
m_pQueryList->Show( true ); m_pCaseQueries->Check( sal_True );
m_xCurrentList.reset( new QueryListFacade( *m_pQueryList, m_rContext.getConnection() ) );
m_pQueryList->GrabFocus();
break;
}
m_pCurrentList->updateTableObjectList( m_rContext.allowViews() );
m_xCurrentList->updateTableObjectList( m_rContext.allowViews() );
}
void OAddTableDlg::Update()
{
if ( !m_pCurrentList.get() )
if ( !m_xCurrentList.get() )
impl_switchTo( Tables );
else
m_pCurrentList->updateTableObjectList( m_rContext.allowViews() );
m_xCurrentList->updateTableObjectList( m_rContext.allowViews() );
}
void OAddTableDlg::impl_addTable()
{
if ( m_pCurrentList->isLeafSelected() )
if ( m_xCurrentList->isLeafSelected() )
{
OUString sSelectedName, sAliasName;
sSelectedName = m_pCurrentList->getSelectedName( sAliasName );
sSelectedName = m_xCurrentList->getSelectedName( sAliasName );
m_rContext.addTableWindow( sSelectedName, sAliasName );
}
......@@ -440,7 +427,7 @@ IMPL_LINK( OAddTableDlg, TableListDoubleClickHdl, void*, /*EMPTY_ARG*/ )
IMPL_LINK( OAddTableDlg, TableListSelectHdl, void*, /*EMPTY_ARG*/ )
{
aAddButton.Enable( m_pCurrentList->isLeafSelected() );
m_pAddButton->Enable( m_xCurrentList->isLeafSelected() );
return 0;
}
......@@ -451,7 +438,7 @@ IMPL_LINK( OAddTableDlg, CloseClickHdl, Button*, /*pButton*/ )
IMPL_LINK( OAddTableDlg, OnTypeSelected, void*, /*EMPTY_ARG*/ )
{
if ( m_aCaseTables.IsChecked() )
if ( m_pCaseTables->IsChecked() )
impl_switchTo( Tables );
else
impl_switchTo( Queries );
......@@ -473,7 +460,6 @@ OUString OAddTableDlg::getDialogTitleForContext( IAddTableDialogContext& _rConte
{
OUString sTitle;
::svt::OLocalResourceAccess aLocalRes( ModuleRes( DLG_JOIN_TABADD ), RSC_MODELESSDIALOG );
if ( _rContext.allowQueries() )
sTitle = ModuleRes( STR_ADD_TABLE_OR_QUERY );
else
......
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This file incorporates work covered by the following license notice:
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright
* ownership. The ASF licenses this file to you under the Apache
* License, Version 2.0 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
#ifndef DBAUI_ADTABDLG_HRC
#define DBAUI_ADTABDLG_HRC
#define LB_TABLE_OR_QUERY 1
#define LB_DATABASE 2
#define FT_DATABASE 1
#define PB_ADDTABLE 1
#define PB_CLOSE 2
#define PB_HELP 3
#define RB_CASE_TABLES 1
#define RB_CASE_QUERIES 2
#define STR_ADD_TABLES 1
#define STR_ADD_TABLE_OR_QUERY 2
#endif // DBAUI_ADTABDLG_HRC
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This file incorporates work covered by the following license notice:
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright
* ownership. The ASF licenses this file to you under the Apache
* License, Version 2.0 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
#include "adtabdlg.hrc"
#include "dbaccess_helpid.hrc"
#include "dbu_dlg.hrc"
ModelessDialog DLG_JOIN_TABADD
{
OutputSize = TRUE ;
SVLook = TRUE ;
HelpID = HID_DLG_JOIN_TABADD ;
Size = MAP_APPFONT ( 178 , 147 ) ;
Moveable = TRUE ;
Closeable = TRUE ;
Hide = TRUE ;
RadioButton RB_CASE_TABLES
{
HelpID = "dbaccess:RadioButton:DLG_JOIN_TABADD:RB_CASE_TABLES";
Pos = MAP_APPFONT( 6, 6 );
Size = MAP_APPFONT( 50, 8 );
Text [ en-US ] = "Tables";
};
RadioButton RB_CASE_QUERIES
{
HelpID = "dbaccess:RadioButton:DLG_JOIN_TABADD:RB_CASE_QUERIES";
Pos = MAP_APPFONT( 62, 6 );
Size = MAP_APPFONT( 50, 8 );
Text [ en-US ] = "Queries";
};
Control LB_TABLE_OR_QUERY
{
Border = TRUE ;
Pos = MAP_APPFONT ( 6 , 18 ) ;
Size = MAP_APPFONT ( 106 , 122 ) ;
TabStop = TRUE ;
Hide = TRUE;
Group = TRUE;
};
PushButton PB_ADDTABLE
{
HelpID = "dbaccess:PushButton:DLG_JOIN_TABADD:PB_ADDTABLE";
Pos = MAP_APPFONT ( 123 , 6 ) ;
Size = MAP_APPFONT ( 50 , 14 ) ;
Text [ en-US ] = "~Add" ;
TabStop = TRUE ;
DefButton = TRUE ;
};
CancelButton PB_CLOSE
{
Pos = MAP_APPFONT ( 123 , 22 ) ;
Size = MAP_APPFONT ( 50 , 14 ) ;
HelpId = HID_JOINSH_ADDTAB_CLOSE;
Text [ en-US ] = "~Close" ;
TabStop = TRUE ;
};
HelpButton PB_HELP
{
Pos = MAP_APPFONT ( 123 , 43 ) ;
Size = MAP_APPFONT ( 50 , 14 ) ;
TabStop = TRUE ;
};
String STR_ADD_TABLES
{
Text [ en-US ] = "Add Tables";
};
String STR_ADD_TABLE_OR_QUERY
{
Text [ en-US ] = "Add Table or Query" ;
};
};
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
......@@ -19,20 +19,14 @@
#ifndef INCLUDED_DBACCESS_SOURCE_UI_INC_ADTABDLG_HXX
#define INCLUDED_DBACCESS_SOURCE_UI_INC_ADTABDLG_HXX
#include <boost/scoped_ptr.hpp>
#include <com/sun/star/sdbc/XConnection.hpp>
#include <vcl/dialog.hxx>
#include <vcl/button.hxx>
#include <vcl/fixed.hxx>
#include <com/sun/star/sdbc/XConnection.hpp>
#include <vcl/lstbox.hxx>
#include "tabletree.hxx"
#include <memory>
namespace dbaui
{
/** unifies the access to a list of table/query objects
......@@ -64,20 +58,17 @@ namespace dbaui
class OAddTableDlg : public ModelessDialog
{
RadioButton m_aCaseTables;
RadioButton m_aCaseQueries;
RadioButton* m_pCaseTables;
RadioButton* m_pCaseQueries;
OTableTreeListBox m_aTableList;
SvTreeListBox m_aQueryList;
::std::auto_ptr< TableObjectListFacade >
m_pCurrentList;
OTableTreeListBox* m_pTableList;
SvTreeListBox* m_pQueryList;
boost::scoped_ptr< TableObjectListFacade > m_xCurrentList;
PushButton aAddButton;
CancelButton aCloseButton;
HelpButton aHelpButton;
PushButton* m_pAddButton;
PushButton* m_pCloseButton;
IAddTableDialogContext&
m_rContext;
IAddTableDialogContext& m_rContext;
DECL_LINK( AddClickHdl, Button* );
DECL_LINK( CloseClickHdl, Button* );
......@@ -91,7 +82,7 @@ namespace dbaui
IAddTableDialogContext& _rContext );
virtual ~OAddTableDlg();
void DetermineAddTable() { aAddButton.Enable( impl_isAddAllowed() ); }
void DetermineAddTable() { m_pAddButton->Enable( impl_isAddAllowed() ); }
void Update();
static OUString getDialogTitleForContext(
......
......@@ -69,8 +69,8 @@
// FREE
#define STR_COMMAND_EXECUTED_SUCCESSFULLY RID_STR_DLG_START + 23
#define STR_DIRECTSQL_CONNECTIONLOST RID_STR_DLG_START + 24
// FREE
// FREE
#define STR_ADD_TABLES RID_STR_DLG_START + 25
#define STR_ADD_TABLE_OR_QUERY RID_STR_DLG_START + 26
#define STR_USERADMIN_NOT_AVAILABLE RID_STR_DLG_START + 27
#define STR_TAB_INDEX_SORTORDER RID_STR_DLG_START + 28
#define STR_TAB_INDEX_FIELD RID_STR_DLG_START + 29
......
<?xml version="1.0" encoding="UTF-8"?>
<!-- Generated with glade 3.16.1 -->
<interface>
<requires lib="gtk+" version="3.0"/>
<!-- interface-requires LibreOffice 1.0 -->
<object class="GtkDialog" id="TablesJoinDialog">
<property name="can_focus">False</property>
<property name="border_width">6</property>
<property name="type_hint">dialog</property>
<child internal-child="vbox">
<object class="GtkBox" id="dialog-vbox1">
<property name="can_focus">False</property>
<property name="orientation">vertical</property>
<property name="spacing">12</property>
<child internal-child="action_area">
<object class="GtkButtonBox" id="dialog-action_area1">
<property name="can_focus">False</property>
<property name="layout_style">end</property>
<child>
<object class="GtkButton" id="add">
<property name="label">gtk-add</property>
<property name="visible">True</property>
<property name="can_focus">True</property>
<property name="can_default">True</property>
<property name="has_default">True</property>
<property name="receives_default">True</property>
<property name="use_stock">True</property>
</object>
<packing>
<property name="expand">False</property>
<property name="fill">True</property>
<property name="position">0</property>
</packing>
</child>
<child>
<object class="GtkButton" id="close">
<property name="label">gtk-close</property>
<property name="visible">True</property>
<property name="can_focus">True</property>
<property name="receives_default">True</property>
<property name="use_stock">True</property>
</object>
<packing>
<property name="expand">False</property>
<property name="fill">True</property>
<property name="position">1</property>
</packing>
</child>
<child>
<object class="GtkButton" id="help">
<property name="label">gtk-help</property>
<property name="visible">True</property>
<property name="can_focus">True</property>
<property name="receives_default">True</property>
<property name="use_stock">True</property>
</object>
<packing>
<property name="expand">False</property>
<property name="fill">True</property>
<property name="position">2</property>
</packing>
</child>
</object>
<packing>
<property name="expand">False</property>
<property name="fill">True</property>
<property name="pack_type">end</property>
<property name="position">0</property>
</packing>
</child>
<child>
<object class="GtkGrid" id="grid1">
<property name="visible">True</property>
<property name="can_focus">False</property>
<property name="hexpand">True</property>
<property name="vexpand">True</property>
<property name="row_spacing">6</property>
<child>
<object class="GtkRadioButton" id="tables">
<property name="label" translatable="yes">Tables</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">queries</property>
</object>
<packing>
<property name="left_attach">0</property>
<property name="top_attach">0</property>
<property name="width">1</property>
<property name="height">1</property>
</packing>
</child>
<child>
<object class="GtkRadioButton" id="queries">
<property name="label" translatable="yes">Queries</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.0099999997764825821</property>
<property name="draw_indicator">True</property>
<property name="group">tables</property>
</object>
<packing>
<property name="left_attach">0</property>
<property name="top_attach">1</property>
<property name="width">1</property>
<property name="height">1</property>
</packing>
</child>
<child>
<object class="dbulo-OTableTreeListBox" id="tablelist:border">
<property name="visible">True</property>
<property name="can_focus">True</property>
<property name="hexpand">True</property>
<property name="vexpand">True</property>
<child internal-child="selection">
<object class="GtkTreeSelection" id="OTableTreeListBox-selection3"/>
</child>
</object>
<packing>
<property name="left_attach">0</property>
<property name="top_attach">2</property>
<property name="width">1</property>
<property name="height">1</property>
</packing>
</child>
<child>
<object class="GtkLabel" id="title">
<property name="can_focus">False</property>
<property name="no_show_all">True</property>
<property name="label" translatable="yes">Add Tables</property>
</object>
<packing>
<property name="left_attach">0</property>
<property name="top_attach">4</property>
<property name="width">1</property>
<property name="height">1</property>
</packing>
</child>
<child>
<object class="GtkLabel" id="alttitle">
<property name="can_focus">False</property>
<property name="no_show_all">True</property>
<property name="label" translatable="yes">Add Table or Query</property>
</object>
<packing>
<property name="left_attach">0</property>
<property name="top_attach">5</property>
<property name="width">1</property>
<property name="height">1</property>
</packing>
</child>
<child>
<object class="svtlo-SvTreeListBox" id="querylist:border">
<property name="visible">True</property>
<property name="can_focus">True</property>
<property name="hexpand">True</property>
<property name="vexpand">True</property>
<child internal-child="selection">
<object class="GtkTreeSelection" id="Tree List-selection3"/>
</child>
</object>
<packing>
<property name="left_attach">0</property>
<property name="top_attach">3</property>
<property name="width">1</property>
<property name="height">1</property>
</packing>
</child>
</object>
<packing>
<property name="expand">False</property>
<property name="fill">True</property>
<property name="position">1</property>
</packing>
</child>
</object>
</child>
<action-widgets>
<action-widget response="0">add</action-widget>
<action-widget response="0">close</action-widget>
<action-widget response="0">help</action-widget>
</action-widgets>
</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