f65184802d
* NEW: Update copyright and license string in all source files. git-svn-id: svn://localhost/gambas/trunk@2241 867c0c6c-44f3-4631-809d-bfa615b0a4ec
76 lines
2 KiB
C++
76 lines
2 KiB
C++
/***************************************************************************
|
|
|
|
gtabstrip.h
|
|
|
|
(c) 2000-2009 Benoît Minisini <gambas@users.sourceforge.net>
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation; either version 2, or (at your option)
|
|
any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; if not, write to the Free Software
|
|
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
***************************************************************************/
|
|
#ifndef __GTABSTRIP_H
|
|
#define __GTABSTRIP_H
|
|
|
|
class gTabStripPage;
|
|
|
|
class gTabStrip : public gContainer
|
|
{
|
|
friend class gTabStripPage;
|
|
|
|
public:
|
|
gTabStrip(gContainer *parent);
|
|
~gTabStrip();
|
|
|
|
//"Properties"
|
|
int count() { return _pages->len; }
|
|
int index();
|
|
int orientation();
|
|
void setOrientation(int vl);
|
|
bool tabEnabled(int ind);
|
|
gPicture* tabPicture(int ind);
|
|
bool tabVisible(int ind);
|
|
char *tabText(int ind);
|
|
int tabCount(int ind);
|
|
gControl *tabChild(int ind, int n);
|
|
|
|
bool setCount(int vl);
|
|
void setIndex(int vl);
|
|
void setTabPicture(int ind, gPicture *pic);
|
|
void setTabEnabled(int ind, bool vl);
|
|
void setTabText(int ind, char *txt);
|
|
void setTabVisible(int ind, bool vl);
|
|
bool removeTab(int ind);
|
|
|
|
virtual int childCount();
|
|
virtual gControl *child(int index);
|
|
|
|
virtual void setRealBackground(gColor color);
|
|
virtual void setRealForeground(gColor color);
|
|
|
|
virtual void setFont(gFont *ft);
|
|
|
|
//"Events"
|
|
void (*onClick)(gTabStrip *sender);
|
|
|
|
//"Private"
|
|
virtual GtkWidget *getContainer();
|
|
|
|
private:
|
|
GPtrArray *_pages;
|
|
gTabStripPage *get(int ind);
|
|
int getRealIndex(GtkWidget *page);
|
|
void destroyTab(int ind);
|
|
};
|
|
|
|
#endif
|