aboutsummaryrefslogtreecommitdiffstats
path: root/doc/codesnippets/doc/src/snippets/code/src_gui_dialogs_qfontdialog.cpp
blob: 1516988d4e0b5cdd714e74dbd7fc10e0aaa902e6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
//! [0]

(ok, font) = QFontDialog.getFont(QFont("Helvetica [Cronyx]", 10), self)
if ok:
    # the user clicked OK and font is set to the font the user selected
else:
    # the user canceled the dialog; font is set to the initial
    # value, in this case Helvetica [Cronyx], 10
//! [0]


//! [1]
myWidget.setFont(QFontDialog.getFont(0, myWidget.font()))
//! [1]


//! [2]
(ok, font) = QFontDialog.getFont(QFont("Times", 12), self)
if ok:
    # font is set to the font the user selected
else:
    # the user canceled the dialog; font is set to the initial
    # value, in this case Times, 12.
//! [2]


//! [3]
myWidget.setFont(QFontDialog.getFont(0, myWidget.font()))
//! [3]


//! [4]

(ok, font) = QFontDialog.getFont(self)
if ok:
    # font is set to the font the user selected
else:
    # the user canceled the dialog; font is set to the default
    # application font, QApplication.font()
//! [4]