git-svn-id: http://svn2.nishi.boats/svn/milsko/trunk@758 b9cfdab3-6d41-4d17-bbe4-086880011989
This commit is contained in:
NishiOwO
2025-11-19 14:06:56 +00:00
parent d24a255297
commit 2ed6053819
5 changed files with 114 additions and 72 deletions

View File

@@ -21,7 +21,7 @@ typedef struct _MwListBox* MwListBox;
typedef struct _MwComboBox* MwComboBox;
typedef struct _MwTreeView* MwTreeView;
typedef struct _MwListBoxEntry MwListBoxEntry;
typedef struct _MwTreeViewEntry MwTreeViewEntry;
typedef struct _MwTreeViewEntry MwTreeViewEntry;
typedef struct _MwDirectoryEntry MwDirectoryEntry;
typedef struct _MwListBoxPacket MwListBoxPacket;
#ifdef _MILSKO
@@ -140,17 +140,19 @@ struct _MwComboBox {
};
struct _MwTreeViewEntry {
char* label;
MwLLPixmap pixmap;
char* label;
MwLLPixmap pixmap;
MwTreeViewEntry* tree;
int opened;
int opened;
};
struct _MwTreeView {
MwWidget frame;
MwWidget vscroll;
int changed;
MwWidget frame;
MwWidget vscroll;
int changed;
MwTreeViewEntry* tree;
MwPoint pressed;
};
struct _MwDirectoryEntry {