]> git.saurik.com Git - wxWidgets.git/blame - src/gtk1/fontdlg.cpp
& operator should be &&
[wxWidgets.git] / src / gtk1 / fontdlg.cpp
CommitLineData
6dfaa4e5 1/////////////////////////////////////////////////////////////////////////////
93763ad5 2// Name: src/gtk1/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
88a7a4e1 13#if wxUSE_FONTDLG && !defined(__WXGPE__)
47e118ba 14
6dfaa4e5 15#include "wx/fontdlg.h"
88a7a4e1
WS
16
17#ifndef WX_PRECOMP
18 #include "wx/intl.h"
19#endif
20
e1bf3ad3 21#include "wx/fontutil.h"
6dfaa4e5 22#include "wx/utils.h"
6dfaa4e5
RR
23#include "wx/debug.h"
24#include "wx/msgdlg.h"
25
3cbab641 26#include "wx/gtk1/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
93763ad5 55 return true;
6dfaa4e5 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 71
6dfaa4e5 72 GdkFont *gfont = gtk_font_selection_dialog_get_font(fontdlg);
0b862e20 73
6dfaa4e5
RR
74 if (!gfont)
75 {
7826e2dd
VZ
76 wxMessageBox(_("Please choose a valid font."), _("Error"),
77 wxOK | wxICON_ERROR);
6dfaa4e5
RR
78 return;
79 }
0b862e20 80
6dfaa4e5 81 gchar *fontname = gtk_font_selection_dialog_get_font_name(fontdlg);
2b5f62a0 82 dialog->SetChosenFont( fontname);
7beba2fc 83
6dfaa4e5 84 g_free( fontname );
0b862e20 85
6dfaa4e5
RR
86 wxCommandEvent event(wxEVT_COMMAND_BUTTON_CLICKED, wxID_OK);
87 event.SetEventObject( dialog );
88 dialog->GetEventHandler()->ProcessEvent( event );
89}
865bb325 90}
6dfaa4e5
RR
91
92//-----------------------------------------------------------------------------
93// "clicked" for Cancel-button
94//-----------------------------------------------------------------------------
95
865bb325 96extern "C" {
6dfaa4e5
RR
97static
98void gtk_fontdialog_cancel_callback( GtkWidget *WXUNUSED(w), wxFontDialog *dialog )
99{
0b862e20 100 if (g_isIdle)
6dfaa4e5
RR
101 wxapp_install_idle_handler();
102
103 wxCommandEvent event(wxEVT_COMMAND_BUTTON_CLICKED, wxID_CANCEL);
104 event.SetEventObject( dialog );
105 dialog->GetEventHandler()->ProcessEvent( event );
106}
865bb325 107}
6dfaa4e5
RR
108
109//-----------------------------------------------------------------------------
110// wxFontDialog
111//-----------------------------------------------------------------------------
112
dbc65e27 113IMPLEMENT_DYNAMIC_CLASS(wxFontDialog, wxDialog)
6dfaa4e5 114
dbc65e27 115bool wxFontDialog::DoCreate(wxWindow *parent)
6dfaa4e5 116{
93763ad5 117 m_needParent = false;
6dfaa4e5
RR
118
119 if (!PreCreation( parent, wxDefaultPosition, wxDefaultSize ) ||
0b862e20 120 !CreateBase( parent, -1, wxDefaultPosition, wxDefaultSize, wxDEFAULT_DIALOG_STYLE,
223d09f6 121 wxDefaultValidator, wxT("fontdialog") ))
6dfaa4e5 122 {
dbc65e27 123 wxFAIL_MSG( wxT("wxFontDialog creation failed") );
93763ad5 124 return false;
6dfaa4e5 125 }
dbc65e27 126
6dfaa4e5 127 wxString m_message( _("Choose font") );
fab591c5 128 m_widget = gtk_font_selection_dialog_new( wxGTK_CONV( m_message ) );
6dfaa4e5 129
91cf5865
VS
130 if (parent)
131 gtk_window_set_transient_for(GTK_WINDOW(m_widget),
132 GTK_WINDOW(parent->m_widget));
6dfaa4e5
RR
133
134 GtkFontSelectionDialog *sel = GTK_FONT_SELECTION_DIALOG(m_widget);
0b862e20 135
6dfaa4e5
RR
136 gtk_signal_connect( GTK_OBJECT(sel->ok_button), "clicked",
137 GTK_SIGNAL_FUNC(gtk_fontdialog_ok_callback), (gpointer*)this );
138
139 // strange way to internationalize
fab591c5 140 gtk_label_set( GTK_LABEL( BUTTON_CHILD(sel->ok_button) ), _("OK") );
6dfaa4e5
RR
141
142 gtk_signal_connect( GTK_OBJECT(sel->cancel_button), "clicked",
143 GTK_SIGNAL_FUNC(gtk_fontdialog_cancel_callback), (gpointer*)this );
0b862e20 144
6dfaa4e5 145 // strange way to internationalize
fab591c5 146 gtk_label_set( GTK_LABEL( BUTTON_CHILD(sel->cancel_button) ), _("Cancel") );
0b862e20 147
6dfaa4e5
RR
148 gtk_signal_connect( GTK_OBJECT(m_widget), "delete_event",
149 GTK_SIGNAL_FUNC(gtk_fontdialog_delete_callback), (gpointer)this );
30764ab5
VZ
150
151 wxFont font = m_fontData.GetInitialFont();
152 if( font.Ok() )
153 {
74b0216f 154 const wxNativeFontInfo *info = font.GetNativeFontInfo();
30764ab5 155
7826e2dd
VZ
156 if ( info )
157 {
2f35f36b 158
409d5a58 159 const wxString& fontname = info->GetXFontName();
7826e2dd
VZ
160 if ( !fontname )
161 font.GetInternalFont();
3cbab641 162
2f35f36b 163 gtk_font_selection_dialog_set_font_name(sel, wxGTK_CONV(fontname));
7826e2dd
VZ
164 }
165 else
166 {
167 // this is not supposed to happen!
168 wxFAIL_MSG(_T("font is ok but no native font info?"));
169 }
30764ab5 170 }
dbc65e27 171
93763ad5 172 return true;
6dfaa4e5
RR
173}
174
175wxFontDialog::~wxFontDialog()
176{
177}
178
dbc65e27
VZ
179void wxFontDialog::SetChosenFont(const char *fontname)
180{
2b5f62a0 181 m_fontData.SetChosenFont(wxFont( wxString::FromAscii(fontname) ));
dbc65e27
VZ
182}
183
88a7a4e1 184#endif // wxUSE_FONTDLG && !defined(__WXGPE__)