global.h
00001 /* This file is part of the KDE libraries 00002 Copyright (C) 2004 Christoph Cullmann <cullmann@kde.org> 00003 Copyright (C) 2002,2003 Joseph Wenninger <jowenn@kde.org> 00004 00005 This library is free software; you can redistribute it and/or 00006 modify it under the terms of the GNU Library General Public 00007 License as published by the Free Software Foundation; either 00008 version 2 of the License, or (at your option) any later version. 00009 00010 This library is distributed in the hope that it will be useful, 00011 but WITHOUT ANY WARRANTY; without even the implied warranty of 00012 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00013 Library General Public License for more details. 00014 00015 You should have received a copy of the GNU Library General Public License 00016 along with this library; see the file COPYING.LIB. If not, write to 00017 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 00018 Boston, MA 02110-1301, USA. 00019 00020 Based on: 00021 00022 //---------------------------------------------------------------------------- 00023 // Project : KDE MDI extension 00024 // 00025 // begin : 07/1999 by Szymon Stefanek as part of kvirc 00026 // (an IRC application) 00027 // changes : 09/1999 by Falk Brettschneider to create an 00028 // - 06/2000 stand-alone Qt extension set of 00029 // classes and a Qt-based library 00030 // : 02/2000 by Massimo Morin (mmorin@schedsys.com) 00031 // 2000-2003 maintained by the KDevelop project 00032 // patches : -/2000 by Lars Beikirch (Lars.Beikirch@gmx.net) 00033 // : 01/2003 by Jens Zurheide (jens.zurheide@gmx.de) 00034 // 00035 // copyright : (C) 1999-2003 by Falk Brettschneider 00036 // and 00037 // Szymon Stefanek (stefanek@tin.it) 00038 // email : falkbr@kdevelop.org (Falk Brettschneider) 00039 //---------------------------------------------------------------------------- 00040 */ 00041 00042 #ifndef _KMDI_GLOBAL_H_ 00043 #define _KMDI_GLOBAL_H_ 00044 00048 namespace KMDI 00049 { 00050 enum TabWidgetVisibility { 00051 AlwaysShowTabs = 0, 00052 ShowWhenMoreThanOneTab = 1, 00053 NeverShowTabs = 2 00054 }; 00055 00059 enum ToolviewStyle { 00061 IconOnly = 0, 00063 TextOnly = 1, 00065 TextAndIcon = 3 00066 }; 00067 } 00068 00069 #endif