X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/274ad000d2eec40f0af7d2c40940aeece00765d3..04236b74cd5c82645aff3c99736291ebe2f52cc5:/src/gtk/colordlg.cpp diff --git a/src/gtk/colordlg.cpp b/src/gtk/colordlg.cpp index fa41faa4f8..8eaca8bc78 100644 --- a/src/gtk/colordlg.cpp +++ b/src/gtk/colordlg.cpp @@ -9,10 +9,6 @@ // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// -#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) -#pragma implementation "colordlg.h" -#endif - // For compilers that support precompilation, includes "wx.h". #include "wx/wxprec.h" @@ -20,7 +16,7 @@ #pragma hdrstop #endif -#if wxUSE_COLOURDLG && defined(__WXGTK20__) +#if wxUSE_COLOURDLG #include "wx/colordlg.h" @@ -30,6 +26,10 @@ #include "wx/gtk/private.h" +#if wxUSE_LIBHILDON + #include +#endif // wxUSE_LIBHILDON + IMPLEMENT_DYNAMIC_CLASS(wxColourDialog, wxDialog) wxColourDialog::wxColourDialog(wxWindow *parent, wxColourData *data) @@ -42,26 +42,38 @@ bool wxColourDialog::Create(wxWindow *parent, wxColourData *data) if (data) m_data = *data; + m_parent = GetParentForModalDialog(parent); + GtkWindow * const parentGTK = m_parent ? GTK_WINDOW(m_parent->m_widget) + : NULL; + +#if wxUSE_LIBHILDON + m_widget = hildon_color_selector_new(parentGTK); +#else // !wxUSE_LIBHILDON wxString title(_("Choose colour")); m_widget = gtk_color_selection_dialog_new(wxGTK_CONV(title)); - - if (parent) - gtk_window_set_transient_for(GTK_WINDOW(m_widget), - GTK_WINDOW(parent->m_widget)); - - GtkColorSelection *sel = +#endif // wxUSE_LIBHILDON/!wxUSE_LIBHILDON + + g_object_ref(m_widget); + + if ( parentGTK ) + { + gtk_window_set_transient_for(GTK_WINDOW(m_widget), parentGTK); + } + + GtkColorSelection *sel = GTK_COLOR_SELECTION(GTK_COLOR_SELECTION_DIALOG(m_widget)->colorsel); gtk_color_selection_set_has_palette(sel, true); return true; } - + int wxColourDialog::ShowModal() { ColourDataToDialog(); - + gint result = gtk_dialog_run(GTK_DIALOG(m_widget)); - + gtk_widget_hide(m_widget); + switch (result) { default: @@ -72,23 +84,28 @@ int wxColourDialog::ShowModal() case GTK_RESPONSE_DELETE_EVENT: case GTK_RESPONSE_CLOSE: return wxID_CANCEL; - + case GTK_RESPONSE_OK: DialogToColourData(); return wxID_OK; - }; + } } void wxColourDialog::ColourDataToDialog() { - GtkColorSelection *sel = + const GdkColor * const + col = m_data.GetColour().Ok() ? m_data.GetColour().GetColor() + : NULL; + +#if wxUSE_LIBHILDON + HildonColorSelector * const sel = HILDON_COLOR_SELECTOR(m_widget); + hildon_color_selector_set_color(sel, const_cast(col)); +#else // !wxUSE_LIBHILDON + GtkColorSelection *sel = GTK_COLOR_SELECTION(GTK_COLOR_SELECTION_DIALOG(m_widget)->colorsel); - - if (m_data.GetColour().Ok()) - { - gtk_color_selection_set_current_color(sel, - m_data.GetColour().GetColor()); - } + + if ( col ) + gtk_color_selection_set_current_color(sel, col); // setup the palette: @@ -104,23 +121,28 @@ void wxColourDialog::ColourDataToDialog() } } - gchar *pal = gtk_color_selection_palette_to_string(colors, n_colors); + wxGtkString pal(gtk_color_selection_palette_to_string(colors, n_colors)); GtkSettings *settings = gtk_widget_get_settings(GTK_WIDGET(sel)); - g_object_set(settings, "gtk-color-palette", pal, NULL); - - g_free(pal); + g_object_set(settings, "gtk-color-palette", pal.c_str(), NULL); +#endif // wxUSE_LIBHILDON/!wxUSE_LIBHILDON } void wxColourDialog::DialogToColourData() { - GtkColorSelection *sel = +#if wxUSE_LIBHILDON + HildonColorSelector * const sel = HILDON_COLOR_SELECTOR(m_widget); + const GdkColor * const clr = hildon_color_selector_get_color(sel); + if ( clr ) + m_data.SetColour(*clr); +#else // !wxUSE_LIBHILDON + GtkColorSelection *sel = GTK_COLOR_SELECTION(GTK_COLOR_SELECTION_DIALOG(m_widget)->colorsel); GdkColor clr; gtk_color_selection_get_current_color(sel, &clr); - m_data.SetColour(wxColour(clr.red >> 8, clr.green >> 8, clr.blue >> 8)); - + m_data.SetColour(clr); + // Extract custom palette: GtkSettings *settings = gtk_widget_get_settings(GTK_WIDGET(sel)); @@ -133,15 +155,14 @@ void wxColourDialog::DialogToColourData() { for (int i = 0; i < wxMin(n_colors, 16); i++) { - m_data.SetCustomColour(i, wxColour(colors[i].red >> 8, - colors[i].green >> 8, - colors[i].blue >> 8)); + m_data.SetCustomColour(i, wxColour(colors[i])); } g_free(colors); } - + g_free(pal); +#endif // wxUSE_LIBHILDON/!wxUSE_LIBHILDON } -#endif // wxUSE_COLOURDLG && defined(__WXGTK20__) +#endif // wxUSE_COLOURDLG