summaryrefslogtreecommitdiffstats
path: root/doc/src
diff options
context:
space:
mode:
authorJens Bache-Wiig <jbache@trolltech.com>2009-06-15 09:53:43 (GMT)
committerJens Bache-Wiig <jbache@trolltech.com>2009-06-15 09:54:18 (GMT)
commitb47c2c37167d8563d9b96bfdc171470cb4b53f9e (patch)
tree5c732a262efa26f200b55938e0ee5c2403adf889 /doc/src
parent49ab6e1a4c960912ea2fa631cc26cebf70560713 (diff)
downloadQt-b47c2c37167d8563d9b96bfdc171470cb4b53f9e.zip
Qt-b47c2c37167d8563d9b96bfdc171470cb4b53f9e.tar.gz
Qt-b47c2c37167d8563d9b96bfdc171470cb4b53f9e.tar.bz2
Added a code snippet for QProxyStyle
Diffstat (limited to 'doc/src')
-rw-r--r--doc/src/snippets/code/src_gui_qproxystyle.cpp15
1 files changed, 15 insertions, 0 deletions
diff --git a/doc/src/snippets/code/src_gui_qproxystyle.cpp b/doc/src/snippets/code/src_gui_qproxystyle.cpp
new file mode 100644
index 0000000..7633160
--- /dev/null
+++ b/doc/src/snippets/code/src_gui_qproxystyle.cpp
@@ -0,0 +1,15 @@
+//! [0]
+class MyProxyStyle : public QProxyStyle
+{
+public:
+
+ int styleHint(StyleHint hint, const QStyleOption *option = 0,
+ const QWidget *widget = 0, QStyleHintReturn *returnData = 0) const
+ {
+ if (hint == QStyle::SH_UnderlineShortcut)
+ return 1;
+ return QProxyStyle::styleHint(hint, option, widget, returnData);
+ }
+};
+
+//! [0]