diff options
author | Timothy Pearson <[email protected]> | 2012-10-29 14:03:10 -0500 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2012-10-29 14:03:10 -0500 |
commit | 0bf8ed2645fa9721cdf2ebab5e81307e1649b967 (patch) | |
tree | d9c0d0e0c1d6d7090a32771266eb709bfcfb508a /tdegtk/tdegtk-types.h | |
parent | 623f11f6000cb2f05f51c81e7a1c6fc02ce21907 (diff) | |
download | gtk3-tqt-engine-0bf8ed2645fa9721cdf2ebab5e81307e1649b967.tar.gz gtk3-tqt-engine-0bf8ed2645fa9721cdf2ebab5e81307e1649b967.zip |
A few widgets are now working somewhat
Diffstat (limited to 'tdegtk/tdegtk-types.h')
-rw-r--r-- | tdegtk/tdegtk-types.h | 25 |
1 files changed, 23 insertions, 2 deletions
diff --git a/tdegtk/tdegtk-types.h b/tdegtk/tdegtk-types.h index ba280d2..ad94d5f 100644 --- a/tdegtk/tdegtk-types.h +++ b/tdegtk/tdegtk-types.h @@ -1,5 +1,5 @@ /* The TdeGtk Theming Engine for Gtk+. - * Copyright (C) 2011 Canonical Ltd + * Copyright (C) 2012 Timothy Pearson <[email protected]> * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public @@ -16,7 +16,8 @@ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, * MA 02110-1301, USA. * - * Authored by Andrea Cimitan <[email protected]> + * Portions of this file written by + * Andrea Cimitan <[email protected]> * */ @@ -61,6 +62,26 @@ typedef enum TDEGTK_NUM_STYLES = 1 } TdeGtkStyles; +enum TQt3WidgetType { + TQT3WT_NONE, + TQT3WT_TQProgressBar, + TQT3WT_TQTabBar, + TQT3WT_TQRadioButton, + TQT3WT_TQCheckBox, + TQT3WT_TQPushButton, + TQT3WT_TQPopupMenu, + TQT3WT_TQComboBox, + TQT3WT_TQSlider, + TQT3WT_TQScrollBar, + TQT3WT_TQSpinBox, + TQT3WT_TQSpinWidget, + TQT3WT_TQTitleBar, + TQT3WT_TQMenuBar, + TQT3WT_TQToolBox, + TQT3WT_TQToolButton, + TQT3WT_GTKTreeViewCell, +}; + typedef struct _TdeGtkStyleFunctions TdeGtkStyleFunctions; struct _TdeGtkStyleFunctions |