mirror of
https://github.com/ra3xdh/qucs_s
synced 2025-03-28 21:13:26 +00:00

* Makefile.am (mac-install-apps): Added post install scripts for MacOSX. 2008-11-27 Stefan Jahn <stefan@lkcc.org> * dialogs/vtabbutton.cpp (drawButton): Adjusted code to work with MacOSX as well. Thanks to Gopala. * bitmaps/Makefile.am (MACICONS): Added MacOSX icons. * main.cpp (main): Initial position is centered on the screen.
75 lines
2.4 KiB
C++
75 lines
2.4 KiB
C++
/***************************************************************************
|
|
* Copyright (C) 2006 by Gopala Krishna A <krishna.ggk@gmail.com> *
|
|
* *
|
|
* This 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 software 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 package; see the file COPYING. If not, write to *
|
|
* the Free Software Foundation, Inc., 51 Franklin Street - Fifth Floor, *
|
|
* Boston, MA 02110-1301, USA. *
|
|
***************************************************************************/
|
|
|
|
#ifndef VERTICALTABBAR_H
|
|
#define VERTICALTABBAR_H
|
|
|
|
#include "vtabglobal.h"
|
|
#include "vtabbutton.h"
|
|
#include <qwidget.h>
|
|
#include <qptrlist.h>
|
|
|
|
class QVBoxLayout;
|
|
class VTab;
|
|
|
|
/**
|
|
@author Gopala Krishna A <krishna.ggk@gmail.com>
|
|
*/
|
|
class VTabBar : public QWidget,public VTabInterface
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
VTabBar(VTabPosition p = TabLeft,QWidget* parent = 0l, const char* name = 0l);
|
|
|
|
virtual ~VTabBar();
|
|
VTab* addTab(const QString& caption,int id = -1);
|
|
|
|
VTab* findTab(int id);
|
|
void setTabToolTip(VTab *tab,const QString &tip);
|
|
void setTabToolTip(int id,const QString &tip);
|
|
void removeTab(VTab *tab);
|
|
void removeTab(int id);
|
|
bool isAllTabsOff();
|
|
|
|
public slots:
|
|
|
|
void setCurrentTab(VTab *tab);
|
|
void setCurrentTab(int id);
|
|
void setPosition(VTabPosition p_pos);
|
|
void switchOffAllTabs();
|
|
|
|
signals:
|
|
void activatedTab(int p_id);
|
|
void activatedTab(VTab *tab);
|
|
void allTabsOff();
|
|
|
|
private slots:
|
|
void setTabState(int p_id,bool state);
|
|
|
|
private:
|
|
int m_index;
|
|
bool m_tabsOff;
|
|
VTabPosition m_position;
|
|
QVBoxLayout* m_layout;
|
|
QPtrList<VTab> m_tabs;
|
|
|
|
};
|
|
|
|
#endif
|