//-------------------------------------------------------------------------
#if (GTK_MINOR_VERSION > 0)
-#define NEW_GTK_SCROLL_CODE
+ #define NEW_GTK_SCROLL_CODE
#endif
//-----------------------------------------------------------------------------
// private functions
//-----------------------------------------------------------------------------
+#if wxUSE_CHECKLISTBOX
+
#define CHECKBOX_STRING "[-] "
// checklistboxes have "[±] " prepended to their lables, this macro removes it
// the argument to it is a "const char *" pointer
#define GET_REAL_LABEL(label) ((m_hasCheckBoxes)?(label)+4 : (label))
+#else // !wxUSE_CHECKLISTBOX
+
+#define GET_REAL_LABEL(label) (label)
+
+#endif // wxUSE_CHECKLISTBOX
+
//-----------------------------------------------------------------------------
// data
//-----------------------------------------------------------------------------
int sel = listbox->GetIndex( widget );
+#if wxUSE_CHECKLISTBOX
if ((listbox->m_hasCheckBoxes) && (gdk_event->x < 15) && (gdk_event->type != GDK_2BUTTON_PRESS))
{
wxCheckListBox *clb = (wxCheckListBox *)listbox;
event.SetInt( sel );
listbox->GetEventHandler()->ProcessEvent( event );
}
+#endif // wxUSE_CHECKLISTBOX
/* emit wxEVT_COMMAND_LISTBOX_DOUBLECLICKED later */
g_hasDoubleClicked = (gdk_event->type == GDK_2BUTTON_PRESS);
if (gdk_event->keyval != ' ') return FALSE;
+#if wxUSE_CHECKLISTBOX
int sel = listbox->GetIndex( widget );
wxCheckListBox *clb = (wxCheckListBox *)listbox;
event.SetEventObject( listbox );
event.SetInt( sel );
listbox->GetEventHandler()->ProcessEvent( event );
+#endif // wxUSE_CHECKLISTBOX
return FALSE;
}
wxListBox::wxListBox()
{
m_list = (GtkList *) NULL;
+#if wxUSE_CHECKLISTBOX
m_hasCheckBoxes = FALSE;
+#endif // wxUSE_CHECKLISTBOX
}
bool wxListBox::Create( wxWindow *parent, wxWindowID id,
GtkWidget *list_item;
wxString str(choices[i]);
+#if wxUSE_CHECKLISTBOX
if (m_hasCheckBoxes)
{
str.Prepend(CHECKBOX_STRING);
}
+#endif // wxUSE_CHECKLISTBOX
list_item = gtk_list_item_new_with_label( str.mbc_str() );
(GtkSignalFunc)gtk_listbox_button_release_callback,
(gpointer) this );
+#if wxUSE_CHECKLISTBOX
if (m_hasCheckBoxes)
{
gtk_signal_connect( GTK_OBJECT(list_item),
(GtkSignalFunc)gtk_listbox_key_press_callback,
(gpointer)this );
}
+#endif // wxUSE_CHECKLISTBOX
ConnectWidget( list_item );
deletedData.Add(clientData);
+#if wxUSE_CHECKLISTBOX
// save check state
if ( m_hasCheckBoxes )
{
deletedChecks.Add(((wxCheckListBox *)this)->IsChecked(pos + n));
}
+#endif // wxUSE_CHECKLISTBOX
}
int nDeletedCount = n;
{
Append(deletedLabels[n], deletedData[n]);
+#if wxUSE_CHECKLISTBOX
if ( m_hasCheckBoxes )
{
((wxCheckListBox *)this)->Check(pos + n, (bool)deletedChecks[n]);
}
+#endif // wxUSE_CHECKLISTBOX
}
}
GtkWidget *list_item;
wxString label(item);
+#if wxUSE_CHECKLISTBOX
if (m_hasCheckBoxes)
{
label.Prepend(CHECKBOX_STRING);
}
+#endif // wxUSE_CHECKLISTBOX
list_item = gtk_list_item_new_with_label( label.mbc_str() );
(GtkSignalFunc)gtk_listbox_button_release_callback,
(gpointer) this );
+#if wxUSE_CHECKLISTBOX
if (m_hasCheckBoxes)
{
gtk_signal_connect( GTK_OBJECT(list_item),
(GtkSignalFunc)gtk_listbox_key_press_callback,
(gpointer)this );
}
+#endif // wxUSE_CHECKLISTBOX
gtk_widget_show( list_item );
GtkLabel *label = GTK_LABEL( bin->child );
wxString str;
+#if wxUSE_CHECKLISTBOX
if (m_hasCheckBoxes)
str += CHECKBOX_STRING;
+#endif // wxUSE_CHECKLISTBOX
str += string;
gtk_label_set( label, str.mbc_str() );