aboutsummaryrefslogtreecommitdiff
path: root/src/gui.cpp
diff options
context:
space:
mode:
authorLoic Guegan <manzerbredes@mailbox.org>2022-12-23 18:23:05 +0100
committerLoic Guegan <manzerbredes@mailbox.org>2022-12-23 18:23:05 +0100
commit3b7cc1c847f4bc8ec900b01a2bcee0cb90d4bd39 (patch)
tree530f375ef8f6943525139b5f3f8d40cef711fecb /src/gui.cpp
parentc49b48df010c97553aec80491c8fb505e21bcbf1 (diff)
Improve db tab
Diffstat (limited to 'src/gui.cpp')
-rw-r--r--src/gui.cpp18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/gui.cpp b/src/gui.cpp
index c14d000..5e109cb 100644
--- a/src/gui.cpp
+++ b/src/gui.cpp
@@ -614,3 +614,21 @@ TabBase_TabImport::TabBase_TabImport( wxWindow* parent, wxWindowID id, const wxP
TabBase_TabImport::~TabBase_TabImport()
{
}
+
+TabBase_TabManage::TabBase_TabManage( wxWindow* parent, wxWindowID id, const wxPoint& pos, const wxSize& size, long style, const wxString& name ) : wxPanel( parent, id, pos, size, style, name )
+{
+ wxBoxSizer* main_sizer;
+ main_sizer = new wxBoxSizer( wxVERTICAL );
+
+ m_staticText27 = new wxStaticText( this, wxID_ANY, wxT("TODO"), wxDefaultPosition, wxDefaultSize, 0 );
+ m_staticText27->Wrap( -1 );
+ main_sizer->Add( m_staticText27, 0, wxALL, 5 );
+
+
+ this->SetSizer( main_sizer );
+ this->Layout();
+}
+
+TabBase_TabManage::~TabBase_TabManage()
+{
+}