2011-03-20 20:05:19 +02:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: src/gtk/private.cpp
|
|
|
|
// Purpose: implementation of wxGTK private functions
|
|
|
|
// Author: Marcin Malich
|
|
|
|
// Modified by:
|
|
|
|
// Created: 28.06.2008
|
|
|
|
// Copyright: (c) 2008 Marcin Malich <me@malcom.pl>
|
|
|
|
// Licence: wxWindows licence
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
// ============================================================================
|
|
|
|
// declarations
|
|
|
|
// ============================================================================
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// headers
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
// for compilers that support precompilation, includes "wx.h".
|
|
|
|
#include "wx/wxprec.h"
|
|
|
|
|
|
|
|
#ifdef __BORLANDC__
|
|
|
|
#pragma hdrstop
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef WX_PRECOMP
|
|
|
|
#include "wx/module.h"
|
|
|
|
#endif
|
|
|
|
|
2013-09-23 01:44:55 +03:00
|
|
|
#include <gtk/gtk.h>
|
2011-03-20 20:05:19 +02:00
|
|
|
#include "wx/gtk/private.h"
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// wxGTKPrivate functions implementation
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
namespace wxGTKPrivate
|
|
|
|
{
|
|
|
|
|
|
|
|
static GtkWidget *gs_container = NULL;
|
|
|
|
|
|
|
|
static GtkContainer* GetContainer()
|
|
|
|
{
|
|
|
|
if ( gs_container == NULL )
|
|
|
|
{
|
|
|
|
GtkWidget* window = gtk_window_new(GTK_WINDOW_POPUP);
|
|
|
|
gs_container = gtk_fixed_new();
|
|
|
|
gtk_container_add(GTK_CONTAINER(window), gs_container);
|
|
|
|
}
|
|
|
|
return GTK_CONTAINER(gs_container);
|
|
|
|
}
|
|
|
|
|
|
|
|
GtkWidget *GetButtonWidget()
|
|
|
|
{
|
|
|
|
static GtkWidget *s_button = NULL;
|
|
|
|
|
|
|
|
if ( !s_button )
|
|
|
|
{
|
|
|
|
s_button = gtk_button_new();
|
|
|
|
gtk_container_add(GetContainer(), s_button);
|
|
|
|
gtk_widget_realize(s_button);
|
|
|
|
}
|
|
|
|
|
|
|
|
return s_button;
|
|
|
|
}
|
|
|
|
|
2013-09-23 01:44:55 +03:00
|
|
|
GtkWidget *GetNotebookWidget()
|
|
|
|
{
|
|
|
|
static GtkWidget *s_notebook = NULL;
|
|
|
|
|
|
|
|
if ( !s_notebook )
|
|
|
|
{
|
|
|
|
s_notebook = gtk_notebook_new();
|
|
|
|
gtk_container_add(GetContainer(), s_notebook);
|
|
|
|
gtk_widget_realize(s_notebook);
|
|
|
|
}
|
|
|
|
|
|
|
|
return s_notebook;
|
|
|
|
}
|
|
|
|
|
2011-03-20 20:05:19 +02:00
|
|
|
GtkWidget *GetCheckButtonWidget()
|
|
|
|
{
|
|
|
|
static GtkWidget *s_button = NULL;
|
|
|
|
|
|
|
|
if ( !s_button )
|
|
|
|
{
|
|
|
|
s_button = gtk_check_button_new();
|
|
|
|
gtk_container_add(GetContainer(), s_button);
|
|
|
|
gtk_widget_realize(s_button);
|
|
|
|
}
|
|
|
|
|
|
|
|
return s_button;
|
|
|
|
}
|
|
|
|
|
|
|
|
GtkWidget * GetComboBoxWidget()
|
|
|
|
{
|
|
|
|
static GtkWidget *s_button = NULL;
|
|
|
|
static GtkWidget *s_window = NULL;
|
|
|
|
|
|
|
|
if ( !s_button )
|
|
|
|
{
|
|
|
|
s_window = gtk_window_new( GTK_WINDOW_POPUP );
|
|
|
|
gtk_widget_realize( s_window );
|
|
|
|
s_button = gtk_combo_box_new();
|
|
|
|
gtk_container_add( GTK_CONTAINER(s_window), s_button );
|
|
|
|
gtk_widget_realize( s_button );
|
|
|
|
}
|
|
|
|
|
|
|
|
return s_button;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
GtkWidget *GetEntryWidget()
|
|
|
|
{
|
|
|
|
static GtkWidget *s_entry = NULL;
|
|
|
|
|
|
|
|
if ( !s_entry )
|
|
|
|
{
|
|
|
|
s_entry = gtk_entry_new();
|
|
|
|
gtk_container_add(GetContainer(), s_entry);
|
|
|
|
gtk_widget_realize(s_entry);
|
|
|
|
}
|
|
|
|
|
|
|
|
return s_entry;
|
|
|
|
}
|
|
|
|
|
|
|
|
// This one just gets the button used by the column header. Although it's
|
|
|
|
// still a gtk_button the themes will typically differentiate and draw them
|
|
|
|
// differently if the button is in a treeview.
|
|
|
|
static GtkWidget *s_first_button = NULL;
|
|
|
|
static GtkWidget *s_other_button = NULL;
|
|
|
|
static GtkWidget *s_last_button = NULL;
|
|
|
|
|
|
|
|
static void CreateHeaderButtons()
|
|
|
|
{
|
|
|
|
// Get the dummy tree widget, give it a column, and then use the
|
|
|
|
// widget in the column header for the rendering code.
|
|
|
|
GtkWidget* treewidget = GetTreeWidget();
|
|
|
|
|
|
|
|
GtkTreeViewColumn *column = gtk_tree_view_column_new();
|
|
|
|
gtk_tree_view_append_column(GTK_TREE_VIEW(treewidget), column);
|
2013-09-23 01:44:55 +03:00
|
|
|
#ifdef __WXGTK3__
|
|
|
|
s_first_button = gtk_tree_view_column_get_button(column);
|
|
|
|
#else
|
2011-03-20 20:05:19 +02:00
|
|
|
s_first_button = column->button;
|
2013-09-23 01:44:55 +03:00
|
|
|
#endif
|
|
|
|
wxASSERT(s_first_button);
|
2011-03-20 20:05:19 +02:00
|
|
|
|
|
|
|
column = gtk_tree_view_column_new();
|
|
|
|
gtk_tree_view_append_column(GTK_TREE_VIEW(treewidget), column);
|
2013-09-23 01:44:55 +03:00
|
|
|
#ifdef __WXGTK3__
|
|
|
|
s_other_button = gtk_tree_view_column_get_button(column);
|
|
|
|
#else
|
2011-03-20 20:05:19 +02:00
|
|
|
s_other_button = column->button;
|
2013-09-23 01:44:55 +03:00
|
|
|
#endif
|
2011-03-20 20:05:19 +02:00
|
|
|
|
|
|
|
column = gtk_tree_view_column_new();
|
|
|
|
gtk_tree_view_append_column(GTK_TREE_VIEW(treewidget), column);
|
2013-09-23 01:44:55 +03:00
|
|
|
#ifdef __WXGTK3__
|
|
|
|
s_last_button = gtk_tree_view_column_get_button(column);
|
|
|
|
#else
|
2011-03-20 20:05:19 +02:00
|
|
|
s_last_button = column->button;
|
2013-09-23 01:44:55 +03:00
|
|
|
#endif
|
2011-03-20 20:05:19 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
GtkWidget *GetHeaderButtonWidgetFirst()
|
|
|
|
{
|
|
|
|
if (!s_first_button)
|
|
|
|
CreateHeaderButtons();
|
|
|
|
|
|
|
|
return s_first_button;
|
|
|
|
}
|
|
|
|
|
|
|
|
GtkWidget *GetHeaderButtonWidgetLast()
|
|
|
|
{
|
|
|
|
if (!s_last_button)
|
|
|
|
CreateHeaderButtons();
|
|
|
|
|
|
|
|
return s_last_button;
|
|
|
|
}
|
|
|
|
|
|
|
|
GtkWidget *GetHeaderButtonWidget()
|
|
|
|
{
|
|
|
|
if (!s_other_button)
|
|
|
|
CreateHeaderButtons();
|
|
|
|
|
|
|
|
return s_other_button;
|
|
|
|
}
|
|
|
|
|
|
|
|
GtkWidget * GetRadioButtonWidget()
|
|
|
|
{
|
|
|
|
static GtkWidget *s_button = NULL;
|
|
|
|
static GtkWidget *s_window = NULL;
|
|
|
|
|
|
|
|
if ( !s_button )
|
|
|
|
{
|
|
|
|
s_window = gtk_window_new( GTK_WINDOW_POPUP );
|
|
|
|
gtk_widget_realize( s_window );
|
|
|
|
s_button = gtk_radio_button_new(NULL);
|
|
|
|
gtk_container_add( GTK_CONTAINER(s_window), s_button );
|
|
|
|
gtk_widget_realize( s_button );
|
|
|
|
}
|
|
|
|
|
|
|
|
return s_button;
|
|
|
|
}
|
|
|
|
|
2013-09-23 01:44:55 +03:00
|
|
|
GtkWidget* GetSplitterWidget(wxOrientation orient)
|
2011-03-20 20:05:19 +02:00
|
|
|
{
|
2013-09-23 01:44:55 +03:00
|
|
|
static GtkWidget* widgets[2];
|
|
|
|
const GtkOrientation gtkOrient =
|
|
|
|
orient == wxHORIZONTAL ? GTK_ORIENTATION_HORIZONTAL : GTK_ORIENTATION_VERTICAL;
|
|
|
|
GtkWidget*& widget = widgets[gtkOrient];
|
2011-03-20 20:05:19 +02:00
|
|
|
if (widget == NULL)
|
|
|
|
{
|
2013-09-23 01:44:55 +03:00
|
|
|
#ifdef __WXGTK3__
|
|
|
|
widget = gtk_paned_new(gtkOrient);
|
|
|
|
#else
|
|
|
|
if (orient == wxHORIZONTAL)
|
|
|
|
widget = gtk_hpaned_new();
|
|
|
|
else
|
|
|
|
widget = gtk_vpaned_new();
|
|
|
|
#endif
|
2011-03-20 20:05:19 +02:00
|
|
|
gtk_container_add(GetContainer(), widget);
|
|
|
|
gtk_widget_realize(widget);
|
|
|
|
}
|
|
|
|
|
|
|
|
return widget;
|
|
|
|
}
|
|
|
|
|
|
|
|
GtkWidget * GetTextEntryWidget()
|
|
|
|
{
|
|
|
|
static GtkWidget *s_button = NULL;
|
|
|
|
static GtkWidget *s_window = NULL;
|
|
|
|
|
|
|
|
if ( !s_button )
|
|
|
|
{
|
|
|
|
s_window = gtk_window_new( GTK_WINDOW_POPUP );
|
|
|
|
gtk_widget_realize( s_window );
|
|
|
|
s_button = gtk_entry_new();
|
|
|
|
gtk_container_add( GTK_CONTAINER(s_window), s_button );
|
|
|
|
gtk_widget_realize( s_button );
|
|
|
|
}
|
|
|
|
|
|
|
|
return s_button;
|
|
|
|
}
|
|
|
|
|
|
|
|
GtkWidget *GetTreeWidget()
|
|
|
|
{
|
|
|
|
static GtkWidget *s_tree = NULL;
|
|
|
|
|
|
|
|
if ( !s_tree )
|
|
|
|
{
|
|
|
|
s_tree = gtk_tree_view_new();
|
|
|
|
gtk_container_add(GetContainer(), s_tree);
|
|
|
|
gtk_widget_realize(s_tree);
|
|
|
|
}
|
|
|
|
|
|
|
|
return s_tree;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Module for destroying created widgets
|
|
|
|
class WidgetsCleanupModule : public wxModule
|
|
|
|
{
|
|
|
|
public:
|
2016-06-26 08:25:29 +03:00
|
|
|
virtual bool OnInit() wxOVERRIDE
|
2011-03-20 20:05:19 +02:00
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2016-06-26 08:25:29 +03:00
|
|
|
virtual void OnExit() wxOVERRIDE
|
2011-03-20 20:05:19 +02:00
|
|
|
{
|
|
|
|
if ( gs_container )
|
|
|
|
{
|
|
|
|
GtkWidget* parent = gtk_widget_get_parent(gs_container);
|
|
|
|
gtk_widget_destroy(parent);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-06-26 08:25:29 +03:00
|
|
|
wxDECLARE_DYNAMIC_CLASS(WidgetsCleanupModule);
|
2011-03-20 20:05:19 +02:00
|
|
|
};
|
|
|
|
|
2016-06-26 08:25:29 +03:00
|
|
|
wxIMPLEMENT_DYNAMIC_CLASS(WidgetsCleanupModule, wxModule);
|
2011-03-20 20:05:19 +02:00
|
|
|
|
|
|
|
static WidgetsCleanupModule gs_widgetsCleanupModule;
|
|
|
|
|
|
|
|
} // wxGTKPrivate namespace
|