1 /////////////////////////////////////////////////////////////////////////////
2 // Name: gtk/fontdlg.cpp
3 // Purpose: wxFontDialog
4 // Author: Robert Roebling
6 // Copyright: (c) 1998 Robert Roebling
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////////
11 #pragma implementation "fontdlg.h"
18 #include "wx/fontutil.h"
19 #include "wx/fontdlg.h"
23 #include "wx/msgdlg.h"
25 #include "wx/gtk/private.h"
27 //-----------------------------------------------------------------------------
29 //-----------------------------------------------------------------------------
31 extern void wxapp_install_idle_handler();
34 //-----------------------------------------------------------------------------
36 //-----------------------------------------------------------------------------
39 bool gtk_fontdialog_delete_callback( GtkWidget
*WXUNUSED(widget
), GdkEvent
*WXUNUSED(event
), wxDialog
*win
)
42 wxapp_install_idle_handler();
45 printf( "OnDelete from " );
46 if (win->GetClassInfo() && win->GetClassInfo()->GetClassName())
47 printf( win->GetClassInfo()->GetClassName() );
56 //-----------------------------------------------------------------------------
57 // "clicked" for OK-button
58 //-----------------------------------------------------------------------------
62 void gtk_fontdialog_ok_callback( GtkWidget
*WXUNUSED(widget
), wxFontDialog
*dialog
)
65 wxapp_install_idle_handler();
67 GtkFontSelectionDialog
*fontdlg
= GTK_FONT_SELECTION_DIALOG(dialog
->m_widget
);
68 GdkFont
*gfont
= gtk_font_selection_dialog_get_font(fontdlg
);
72 wxMessageBox(_("Please choose a valid font."), _("Error"),
77 gchar
*fontname
= gtk_font_selection_dialog_get_font_name(fontdlg
);
79 dialog
->m_fontData
.SetChosenFont(wxFont(fontname
));
83 wxCommandEvent
event(wxEVT_COMMAND_BUTTON_CLICKED
, wxID_OK
);
84 event
.SetEventObject( dialog
);
85 dialog
->GetEventHandler()->ProcessEvent( event
);
87 #endif // GTK+ 1.2 and later only
89 //-----------------------------------------------------------------------------
90 // "clicked" for Cancel-button
91 //-----------------------------------------------------------------------------
94 void gtk_fontdialog_cancel_callback( GtkWidget
*WXUNUSED(w
), wxFontDialog
*dialog
)
97 wxapp_install_idle_handler();
99 wxCommandEvent
event(wxEVT_COMMAND_BUTTON_CLICKED
, wxID_CANCEL
);
100 event
.SetEventObject( dialog
);
101 dialog
->GetEventHandler()->ProcessEvent( event
);
104 //-----------------------------------------------------------------------------
106 //-----------------------------------------------------------------------------
108 IMPLEMENT_DYNAMIC_CLASS(wxFontDialog
,wxDialog
)
110 wxFontDialog::wxFontDialog( wxWindow
*parent
, wxFontData
*fontdata
)
111 : m_fontData(*fontdata
)
113 m_needParent
= FALSE
;
115 if (!PreCreation( parent
, wxDefaultPosition
, wxDefaultSize
) ||
116 !CreateBase( parent
, -1, wxDefaultPosition
, wxDefaultSize
, wxDEFAULT_DIALOG_STYLE
,
117 wxDefaultValidator
, wxT("fontdialog") ))
119 wxFAIL_MSG( wxT("wxXX creation failed") );
123 wxString
m_message( _("Choose font") );
124 m_widget
= gtk_font_selection_dialog_new( m_message
.mbc_str() );
126 int x
= (gdk_screen_width () - 400) / 2;
127 int y
= (gdk_screen_height () - 400) / 2;
128 gtk_widget_set_uposition( m_widget
, x
, y
);
130 GtkFontSelectionDialog
*sel
= GTK_FONT_SELECTION_DIALOG(m_widget
);
132 gtk_signal_connect( GTK_OBJECT(sel
->ok_button
), "clicked",
133 GTK_SIGNAL_FUNC(gtk_fontdialog_ok_callback
), (gpointer
*)this );
135 // strange way to internationalize
136 gtk_label_set( GTK_LABEL( BUTTON_CHILD(sel
->ok_button
) ), wxConvCurrent
->cWX2MB(_("OK")) );
138 gtk_signal_connect( GTK_OBJECT(sel
->cancel_button
), "clicked",
139 GTK_SIGNAL_FUNC(gtk_fontdialog_cancel_callback
), (gpointer
*)this );
141 // strange way to internationalize
142 gtk_label_set( GTK_LABEL( BUTTON_CHILD(sel
->cancel_button
) ), wxConvCurrent
->cWX2MB(_("Cancel")) );
144 gtk_signal_connect( GTK_OBJECT(m_widget
), "delete_event",
145 GTK_SIGNAL_FUNC(gtk_fontdialog_delete_callback
), (gpointer
)this );
147 wxFont font
= m_fontData
.GetInitialFont();
150 wxNativeFontInfo
*info
= font
.GetNativeFontInfo();
154 const wxString
& fontname
= info
->GetXFontName();
156 font
.GetInternalFont();
157 gtk_font_selection_dialog_set_font_name
160 wxConvCurrent
->cWX2MB(fontname
)
165 // this is not supposed to happen!
166 wxFAIL_MSG(_T("font is ok but no native font info?"));
171 wxFontDialog::~wxFontDialog()
175 #endif // wxUSE_FONTDLG