better
git-svn-id: http://svn2.nishi.boats/svn/milsko/trunk@366 b9cfdab3-6d41-4d17-bbe4-086880011989
This commit is contained in:
parent
3b2e92ed9d
commit
6dfb78ec7d
3 changed files with 47 additions and 38 deletions
|
|
@ -21,6 +21,7 @@ typedef struct _MwMenu* MwMenu;
|
|||
typedef struct _MwEntry* MwEntry;
|
||||
typedef struct _MwViewport* MwViewport;
|
||||
typedef struct _MwListBox* MwListBox;
|
||||
typedef struct _MwListBoxEntry MwListBoxEntry;
|
||||
typedef struct _MwSizeHints MwSizeHints;
|
||||
typedef struct _MwDirectoryEntry MwDirectoryEntry;
|
||||
#ifdef _MILSKO
|
||||
|
|
@ -119,14 +120,18 @@ struct _MwViewport {
|
|||
MwWidget inframe;
|
||||
};
|
||||
|
||||
struct _MwListBoxEntry {
|
||||
char* name;
|
||||
MwLLPixmap pixmap;
|
||||
};
|
||||
|
||||
struct _MwListBox {
|
||||
MwWidget vscroll;
|
||||
MwWidget frame;
|
||||
char** list;
|
||||
MwLLPixmap* pixmap_list;
|
||||
int selected;
|
||||
unsigned long click_time;
|
||||
int pressed;
|
||||
MwWidget vscroll;
|
||||
MwWidget frame;
|
||||
MwListBoxEntry* list;
|
||||
int selected;
|
||||
unsigned long click_time;
|
||||
int pressed;
|
||||
};
|
||||
|
||||
struct _MwSizeHints {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue