]> git.saurik.com Git - wxWidgets.git/blame - src/gtk/fontdlg.cpp
docking hint bug fix
[wxWidgets.git] / src / gtk / fontdlg.cpp
CommitLineData
6dfaa4e5 1/////////////////////////////////////////////////////////////////////////////
93763ad5 2// Name: src/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
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"
de6185e2 19 #include "wx/utils.h"
246c5004 20 #include "wx/msgdlg.h"
88a7a4e1
WS
21#endif
22
e1bf3ad3 23#include "wx/fontutil.h"
6dfaa4e5 24
9e691f46 25#include "wx/gtk/private.h"
6dfaa4e5 26
6dfaa4e5
RR
27//-----------------------------------------------------------------------------
28// "delete_event"
29//-----------------------------------------------------------------------------
30
865bb325 31extern "C" {
6dfaa4e5
RR
32static
33bool gtk_fontdialog_delete_callback( GtkWidget *WXUNUSED(widget), GdkEvent *WXUNUSED(event), wxDialog *win )
34{
14819684 35 // don't need to install idle handler, its done from "event" signal
6dfaa4e5
RR
36
37/*
38 printf( "OnDelete from " );
39 if (win->GetClassInfo() && win->GetClassInfo()->GetClassName())
40 printf( win->GetClassInfo()->GetClassName() );
41 printf( ".\n" );
42*/
43
44 win->Close();
45
93763ad5 46 return true;
6dfaa4e5 47}
865bb325 48}
6dfaa4e5
RR
49
50//-----------------------------------------------------------------------------
51// "clicked" for OK-button
52//-----------------------------------------------------------------------------
53
865bb325 54extern "C" {
6dfaa4e5
RR
55static
56void gtk_fontdialog_ok_callback( GtkWidget *WXUNUSED(widget), wxFontDialog *dialog )
57{
0b862e20 58 if (g_isIdle)
6dfaa4e5
RR
59 wxapp_install_idle_handler();
60
61 GtkFontSelectionDialog *fontdlg = GTK_FONT_SELECTION_DIALOG(dialog->m_widget);
6e7d0063 62
e808cf8a 63 wxGtkString fontname(gtk_font_selection_dialog_get_font_name(fontdlg));
2b5f62a0 64 dialog->SetChosenFont( fontname);
7beba2fc 65
6dfaa4e5
RR
66 wxCommandEvent event(wxEVT_COMMAND_BUTTON_CLICKED, wxID_OK);
67 event.SetEventObject( dialog );
68 dialog->GetEventHandler()->ProcessEvent( event );
69}
865bb325 70}
6dfaa4e5
RR
71
72//-----------------------------------------------------------------------------
73// "clicked" for Cancel-button
74//-----------------------------------------------------------------------------
75
865bb325 76extern "C" {
6dfaa4e5
RR
77static
78void gtk_fontdialog_cancel_callback( GtkWidget *WXUNUSED(w), wxFontDialog *dialog )
79{
0b862e20 80 if (g_isIdle)
6dfaa4e5
RR
81 wxapp_install_idle_handler();
82
83 wxCommandEvent event(wxEVT_COMMAND_BUTTON_CLICKED, wxID_CANCEL);
84 event.SetEventObject( dialog );
85 dialog->GetEventHandler()->ProcessEvent( event );
86}
865bb325 87}
6dfaa4e5
RR
88
89//-----------------------------------------------------------------------------
90// wxFontDialog
91//-----------------------------------------------------------------------------
92
dbc65e27 93IMPLEMENT_DYNAMIC_CLASS(wxFontDialog, wxDialog)
6dfaa4e5 94
dbc65e27 95bool wxFontDialog::DoCreate(wxWindow *parent)
6dfaa4e5 96{
93763ad5 97 m_needParent = false;
6dfaa4e5
RR
98
99 if (!PreCreation( parent, wxDefaultPosition, wxDefaultSize ) ||
0b862e20 100 !CreateBase( parent, -1, wxDefaultPosition, wxDefaultSize, wxDEFAULT_DIALOG_STYLE,
223d09f6 101 wxDefaultValidator, wxT("fontdialog") ))
6dfaa4e5 102 {
dbc65e27 103 wxFAIL_MSG( wxT("wxFontDialog creation failed") );
93763ad5 104 return false;
6dfaa4e5 105 }
dbc65e27 106
6dfaa4e5 107 wxString m_message( _("Choose font") );
fab591c5 108 m_widget = gtk_font_selection_dialog_new( wxGTK_CONV( m_message ) );
6dfaa4e5 109
91cf5865
VS
110 if (parent)
111 gtk_window_set_transient_for(GTK_WINDOW(m_widget),
112 GTK_WINDOW(parent->m_widget));
6dfaa4e5
RR
113
114 GtkFontSelectionDialog *sel = GTK_FONT_SELECTION_DIALOG(m_widget);
0b862e20 115
9fa72bd2
MR
116 g_signal_connect (sel->ok_button, "clicked",
117 G_CALLBACK (gtk_fontdialog_ok_callback), this);
6dfaa4e5 118
9fa72bd2
MR
119 g_signal_connect (sel->cancel_button, "clicked",
120 G_CALLBACK (gtk_fontdialog_cancel_callback), this);
0b862e20 121
9fa72bd2
MR
122 g_signal_connect (m_widget, "delete_event",
123 G_CALLBACK (gtk_fontdialog_delete_callback), this);
30764ab5
VZ
124
125 wxFont font = m_fontData.GetInitialFont();
126 if( font.Ok() )
127 {
74b0216f 128 const wxNativeFontInfo *info = font.GetNativeFontInfo();
30764ab5 129
7826e2dd
VZ
130 if ( info )
131 {
2f35f36b 132
2f35f36b 133 const wxString& fontname = info->ToString();
2f35f36b 134 gtk_font_selection_dialog_set_font_name(sel, wxGTK_CONV(fontname));
7826e2dd
VZ
135 }
136 else
137 {
138 // this is not supposed to happen!
139 wxFAIL_MSG(_T("font is ok but no native font info?"));
140 }
30764ab5 141 }
dbc65e27 142
93763ad5 143 return true;
6dfaa4e5
RR
144}
145
146wxFontDialog::~wxFontDialog()
147{
148}
149
dbc65e27
VZ
150void wxFontDialog::SetChosenFont(const char *fontname)
151{
2b5f62a0 152 m_fontData.SetChosenFont(wxFont( wxString::FromAscii(fontname) ));
dbc65e27
VZ
153}
154
88a7a4e1 155#endif // wxUSE_FONTDLG && !__WXGPE__