Updating Doxygen styling and Licenses
[baulk.git] / src / Widgets / WebBaulk / common.h
blob098a6b3d912158bd2c30df4749c17af2433c0cb8
1 // Baulk - Common Functions and Classes for WebBaulk
2 //
3 // Baulk - Copyright (C) 2008 - Jacob Alexander
4 //
5 // Baulk is free software; you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation; either version 2 of the License, or
8 // any later version, including version 3 of the License.
9 //
10 // Baulk is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 // GNU General Public License for more details.
15 // You should have received a copy of the GNU General Public License
16 // along with this program. If not, see <http://www.gnu.org/licenses/>.
18 #ifndef __COMMON_H
19 #define __COMMON_H
21 #include <QToolButton>
22 #include <QTreeWidget>
24 // Common Functions and Classes for WebBaulk
26 //! ToolButton Convenience class
27 class ToolButton : public QToolButton {
28 Q_OBJECT
30 public:
31 //! Constructor allowing for text to be added directly
32 ToolButton( QString text, QWidget *parent = 0 );
35 #endif