]> git.saurik.com Git - wxWidgets.git/blame - src/gtk/fontdlg.cpp
For consistency with other ports, send TEXT event after SELECTED event
[wxWidgets.git] / src / gtk / fontdlg.cpp
CommitLineData
6dfaa4e5 1/////////////////////////////////////////////////////////////////////////////
1e6feb95 2// Name: gtk/fontdlg.cpp
6dfaa4e5
RR
3// Purpose: wxFontDialog
4// Author: Robert Roebling
5// Id: $Id$
6// Copyright: (c) 1998 Robert Roebling
65571936 7// Licence: wxWindows licence
6dfaa4e5
RR
8/////////////////////////////////////////////////////////////////////////////
9
14f355c2
VS
10// For compilers that support precompilation, includes "wx.h".
11#include "wx/wxprec.h"
12
1e6feb95
VZ
13#include "wx/defs.h"
14
15#if wxUSE_FONTDLG
16
47e118ba
RR
17#ifndef __WXGPE__
18
6dfaa4e5 19#include "wx/fontdlg.h"
e1bf3ad3 20#include "wx/fontutil.h"
6dfaa4e5
RR
21#include "wx/utils.h"
22#include "wx/intl.h"
23#include "wx/debug.h"
24#include "wx/msgdlg.h"
25
9e691f46 26#include "wx/gtk/private.h"
6dfaa4e5
RR
27
28//-----------------------------------------------------------------------------
29// idle system
30//-----------------------------------------------------------------------------
31
32extern void wxapp_install_idle_handler();
33extern bool g_isIdle;
34
35//-----------------------------------------------------------------------------
36// "delete_event"
37//-----------------------------------------------------------------------------
38
865bb325 39extern "C" {
6dfaa4e5
RR
40static
41bool gtk_fontdialog_delete_callback( GtkWidget *WXUNUSED(widget), GdkEvent *WXUNUSED(event), wxDialog *win )
42{
0b862e20 43 if (g_isIdle)
6dfaa4e5
RR
44 wxapp_install_idle_handler();
45
46/*
47 printf( "OnDelete from " );
48 if (win->GetClassInfo() && win->GetClassInfo()->GetClassName())
49 printf( win->GetClassInfo()->GetClassName() );
50 printf( ".\n" );
51*/
52
53 win->Close();
54
55 return TRUE;
56}
865bb325 57}
6dfaa4e5
RR
58
59//-----------------------------------------------------------------------------
60// "clicked" for OK-button
61//-----------------------------------------------------------------------------
62
865bb325 63extern "C" {
6dfaa4e5
RR
64static
65void gtk_fontdialog_ok_callback( GtkWidget *WXUNUSED(widget), wxFontDialog *dialog )
66{
0b862e20 67 if (g_isIdle)
6dfaa4e5
RR
68 wxapp_install_idle_handler();
69
70 GtkFontSelectionDialog *fontdlg = GTK_FONT_SELECTION_DIALOG(dialog->m_widget);
6e7d0063
RR
71
72#ifndef __WXGTK20__
6dfaa4e5 73 GdkFont *gfont = gtk_font_selection_dialog_get_font(fontdlg);
0b862e20 74
6dfaa4e5
RR
75 if (!gfont)
76 {
7826e2dd
VZ
77 wxMessageBox(_("Please choose a valid font."), _("Error"),
78 wxOK | wxICON_ERROR);
6dfaa4e5
RR
79 return;
80 }
6e7d0063 81#endif
0b862e20 82
6dfaa4e5 83 gchar *fontname = gtk_font_selection_dialog_get_font_name(fontdlg);
2b5f62a0 84 dialog->SetChosenFont( fontname);
7beba2fc 85
6dfaa4e5 86 g_free( fontname );
0b862e20 87
6dfaa4e5
RR
88 wxCommandEvent event(wxEVT_COMMAND_BUTTON_CLICKED, wxID_OK);
89 event.SetEventObject( dialog );
90 dialog->GetEventHandler()->ProcessEvent( event );
91}
865bb325 92}
6dfaa4e5
RR
93
94//-----------------------------------------------------------------------------
95// "clicked" for Cancel-button
96//-----------------------------------------------------------------------------
97
865bb325 98extern "C" {
6dfaa4e5
RR
99static
100void gtk_fontdialog_cancel_callback( GtkWidget *WXUNUSED(w), wxFontDialog *dialog )
101{
0b862e20 102 if (g_isIdle)
6dfaa4e5
RR
103 wxapp_install_idle_handler();
104
105 wxCommandEvent event(wxEVT_COMMAND_BUTTON_CLICKED, wxID_CANCEL);
106 event.SetEventObject( dialog );
107 dialog->GetEventHandler()->ProcessEvent( event );
108}
865bb325 109}
6dfaa4e5
RR
110
111//-----------------------------------------------------------------------------
112// wxFontDialog
113//-----------------------------------------------------------------------------
114
dbc65e27 115IMPLEMENT_DYNAMIC_CLASS(wxFontDialog, wxDialog)
6dfaa4e5 116
dbc65e27 117bool wxFontDialog::DoCreate(wxWindow *parent)
6dfaa4e5
RR
118{
119 m_needParent = FALSE;
120
121 if (!PreCreation( parent, wxDefaultPosition, wxDefaultSize ) ||
0b862e20 122 !CreateBase( parent, -1, wxDefaultPosition, wxDefaultSize, wxDEFAULT_DIALOG_STYLE,
223d09f6 123 wxDefaultValidator, wxT("fontdialog") ))
6dfaa4e5 124 {
dbc65e27
VZ
125 wxFAIL_MSG( wxT("wxFontDialog creation failed") );
126 return FALSE;
6dfaa4e5 127 }
dbc65e27 128
6dfaa4e5 129 wxString m_message( _("Choose font") );
fab591c5 130 m_widget = gtk_font_selection_dialog_new( wxGTK_CONV( m_message ) );
6dfaa4e5 131
91cf5865
VS
132 if (parent)
133 gtk_window_set_transient_for(GTK_WINDOW(m_widget),
134 GTK_WINDOW(parent->m_widget));
6dfaa4e5
RR
135
136 GtkFontSelectionDialog *sel = GTK_FONT_SELECTION_DIALOG(m_widget);
0b862e20 137
6dfaa4e5
RR
138 gtk_signal_connect( GTK_OBJECT(sel->ok_button), "clicked",
139 GTK_SIGNAL_FUNC(gtk_fontdialog_ok_callback), (gpointer*)this );
140
fab591c5 141#ifndef __WXGTK20__
6dfaa4e5 142 // strange way to internationalize
fab591c5
RR
143 gtk_label_set( GTK_LABEL( BUTTON_CHILD(sel->ok_button) ), _("OK") );
144#endif
6dfaa4e5
RR
145
146 gtk_signal_connect( GTK_OBJECT(sel->cancel_button), "clicked",
147 GTK_SIGNAL_FUNC(gtk_fontdialog_cancel_callback), (gpointer*)this );
0b862e20 148
fab591c5 149#ifndef __WXGTK20__
6dfaa4e5 150 // strange way to internationalize
fab591c5
RR
151 gtk_label_set( GTK_LABEL( BUTTON_CHILD(sel->cancel_button) ), _("Cancel") );
152#endif
0b862e20 153
6dfaa4e5
RR
154 gtk_signal_connect( GTK_OBJECT(m_widget), "delete_event",
155 GTK_SIGNAL_FUNC(gtk_fontdialog_delete_callback), (gpointer)this );
30764ab5
VZ
156
157 wxFont font = m_fontData.GetInitialFont();
158 if( font.Ok() )
159 {
74b0216f 160 const wxNativeFontInfo *info = font.GetNativeFontInfo();
30764ab5 161
7826e2dd
VZ
162 if ( info )
163 {
2f35f36b
VS
164
165#ifdef __WXGTK20__
166 const wxString& fontname = info->ToString();
167#else
409d5a58 168 const wxString& fontname = info->GetXFontName();
7826e2dd
VZ
169 if ( !fontname )
170 font.GetInternalFont();
2f35f36b
VS
171#endif
172 gtk_font_selection_dialog_set_font_name(sel, wxGTK_CONV(fontname));
7826e2dd
VZ
173 }
174 else
175 {
176 // this is not supposed to happen!
177 wxFAIL_MSG(_T("font is ok but no native font info?"));
178 }
30764ab5 179 }
dbc65e27
VZ
180
181 return TRUE;
6dfaa4e5
RR
182}
183
184wxFontDialog::~wxFontDialog()
185{
186}
187
dbc65e27
VZ
188void wxFontDialog::SetChosenFont(const char *fontname)
189{
2b5f62a0 190 m_fontData.SetChosenFont(wxFont( wxString::FromAscii(fontname) ));
dbc65e27
VZ
191}
192
1e6feb95
VZ
193#endif // wxUSE_FONTDLG
194
b63b07a8
RL
195#endif // GPE
196