/usr/include/tuxcap/ListWidget.h is in libtuxcap-dev 1.4.0.dfsg2-2.1build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 | #ifndef __LISTWIDGET_H__
#define __LISTWIDGET_H__
#include "ScrollListener.h"
#include "Widget.h"
namespace Sexy
{
typedef std::vector<SexyString> SexyStringVector;
typedef std::vector<Color> ColorVector;
class ScrollbarWidget;
class ListListener;
class Font;
class ListWidget : public Widget, public ScrollListener
{
public:
enum
{
JUSTIFY_LEFT =0,
JUSTIFY_CENTER,
JUSTIFY_RIGHT
};
enum
{
COLOR_BKG =0,
COLOR_OUTLINE,
COLOR_TEXT,
COLOR_HILITE,
COLOR_SELECT,
COLOR_SELECT_TEXT,
};
public:
int mId;
Font* mFont;
ScrollbarWidget* mScrollbar;
int mJustify;
SexyStringVector mLines;
ColorVector mLineColors;
double mPosition;
double mPageSize;
int mHiliteIdx;
int mSelectIdx;
ListListener* mListListener;
ListWidget* mParent;
ListWidget* mChild;
bool mSortFromChild;
bool mDrawOutline;
int mMaxNumericPlaces;
int mItemHeight;
bool mDrawSelectWhenHilited;
bool mDoFingerWhenHilited;
void SetHilite(int theHiliteIdx, bool notifyListener = false);
public:
ListWidget(int theId, Font *theFont, ListListener *theListListener);
virtual ~ListWidget();
virtual void RemovedFromManager(WidgetManager *theManager);
virtual SexyString GetSortKey(int theIdx);
virtual void Sort(bool ascending);
virtual SexyString GetStringAt(int theIdx);
virtual void Resize(int theX, int theY, int theWidth, int theHeight);
virtual int AddLine(const SexyString& theLine, bool alphabetical);
virtual void SetLine(int theIdx, const SexyString& theString);
virtual int GetLineCount();
virtual int GetLineIdx(const SexyString& theLine);
virtual void SetColor(const SexyString& theLine, const Color& theColor);
virtual void SetColor(int theIdx, const Color& theColor);
virtual void SetLineColor(int theIdx, const Color& theColor);
virtual void RemoveLine(int theIdx);
virtual void RemoveAll();
virtual int GetOptimalWidth();
virtual int GetOptimalHeight();
virtual void OrderInManagerChanged();
virtual void Draw(Graphics *g);
virtual void ScrollPosition(int theId, double thePosition);
virtual void MouseMove(int x, int y);
virtual void MouseWheel(int theDelta);
virtual void MouseDown(int x, int y, int theClickCount) { Widget::MouseDown(x, y, theClickCount); }
virtual void MouseDown(int x, int y, int theBtnNum, int theClickCount);
virtual void MouseLeave();
virtual void SetSelect(int theSelectIdx);
};
}
#endif // __LISTWIDGET_H__
|