a572c6b9d1
* NEW: The local Stock class has been deprecated. GTK+ stock icons are not accessible anymore. [GB.GTK3] * NEW: The local Stock class has been deprecated. Deprecated GTK+ stock icons are not accessible anymore. * BUG: Fix warnings by not using deprecated functions. Only GtkImageMenuItem is kept, because I didn't found a workaround yet of GTK+3 dropping icons in menus! git-svn-id: svn://localhost/gambas/trunk@7032 867c0c6c-44f3-4631-809d-bfa615b0a4ec
69 lines
1.7 KiB
C++
69 lines
1.7 KiB
C++
/***************************************************************************
|
|
|
|
gspinbox.h
|
|
|
|
(c) 2000-2013 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., 51 Franklin Street, Fifth Floor, Boston,
|
|
MA 02110-1301, USA.
|
|
|
|
***************************************************************************/
|
|
|
|
#ifndef __GSPINBOX_H
|
|
#define __GSPINBOX_H
|
|
|
|
class gSpinBox : public gControl
|
|
{
|
|
public:
|
|
gSpinBox(gContainer *parent);
|
|
|
|
//"Properties"
|
|
int maxValue() const { return _max; }
|
|
int minValue() const { return _min; }
|
|
int step();
|
|
int value();
|
|
bool wrap();
|
|
bool hasBorder() const;
|
|
|
|
void setMaxValue (int vl);
|
|
void setMinValue (int vl);
|
|
void setStep (int vl);
|
|
void setValue (int vl);
|
|
void setWrap (bool vl);
|
|
void setBorder(bool vl);
|
|
|
|
//"Methods"
|
|
void selectAll();
|
|
|
|
//"Signals"
|
|
void (*onChange) (gSpinBox *sender);
|
|
|
|
#ifdef GTK3
|
|
virtual int minimumWidth() const;
|
|
virtual void resize(int w, int h);
|
|
#else
|
|
virtual void updateCursor(GdkCursor *cursor);
|
|
#endif
|
|
|
|
//"Private"
|
|
private:
|
|
int _min;
|
|
int _max;
|
|
#ifdef GTK3
|
|
int _first_width;
|
|
#endif
|
|
};
|
|
|
|
#endif
|