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 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180
|
/********************************************************************************
* *
* Test Icon List Widget *
* *
*********************************************************************************
* Copyright (C) 1998 by Jeroen van der Zijp. All Rights Reserved. *
*********************************************************************************
* $Id: iconlist.cpp,v 1.12 2001/11/02 06:07:19 jeroen Exp $ *
********************************************************************************/
#include "fx.h"
#include <stdio.h>
#include <stdlib.h>
/*******************************************************************************/
// Window
class IconListWindow : public FXMainWindow {
FXDECLARE(IconListWindow)
public:
long onQuit(FXObject*,FXSelector,void*);
protected:
FXMenubar* menubar;
FXMenuPane* filemenu;
FXMenuPane* arrangemenu;
FXMenuPane* sortmenu;
FXSplitter* splitter;
FXVerticalFrame* group;
FXVerticalFrame* subgroup;
FXIconList* iconlist;
FXTextField* pattern;
protected:
IconListWindow(){}
public:
enum{
ID_DIRECTORY=FXMainWindow::ID_LAST,
ID_PATTERN,
ID_LAST
};
public:
IconListWindow(FXApp* a);
virtual void create();
virtual ~IconListWindow();
};
/*******************************************************************************/
/* Generated by reswrap from file bigfolder.gif */
const unsigned char bigfolder[]={
0x47,0x49,0x46,0x38,0x37,0x61,0x20,0x00,0x20,0x00,0xf2,0x00,0x00,0xb2,0xc0,0xdc,
0x80,0x80,0x80,0xff,0xff,0xff,0xff,0xff,0x00,0xc0,0xc0,0xc0,0x00,0x00,0x00,0x80,
0x80,0x00,0x00,0x00,0x00,0x2c,0x00,0x00,0x00,0x00,0x20,0x00,0x20,0x00,0x00,0x03,
0x83,0x08,0xba,0xdc,0xfe,0x30,0xca,0x49,0x6b,0x0c,0x38,0x67,0x0b,0x83,0xf8,0x20,
0x18,0x70,0x8d,0x37,0x10,0x67,0x8a,0x12,0x23,0x09,0x98,0xab,0xaa,0xb6,0x56,0x40,
0xdc,0x78,0xae,0x6b,0x3c,0x5f,0xbc,0xa1,0xa0,0x70,0x38,0x2c,0x14,0x60,0xb2,0x98,
0x32,0x99,0x34,0x1c,0x05,0xcb,0x28,0x53,0xea,0x44,0x4a,0xaf,0xd3,0x2a,0x74,0xca,
0xc5,0x6a,0xbb,0xe0,0xa8,0x16,0x4b,0x66,0x7e,0xcb,0xe8,0xd3,0x38,0xcc,0x46,0x9d,
0xdb,0xe1,0x75,0xba,0xfc,0x9e,0x77,0xe5,0x70,0xef,0x33,0x1f,0x7f,0xda,0xe9,0x7b,
0x7f,0x77,0x7e,0x7c,0x7a,0x56,0x85,0x4d,0x84,0x82,0x54,0x81,0x88,0x62,0x47,0x06,
0x91,0x92,0x93,0x94,0x95,0x96,0x91,0x3f,0x46,0x9a,0x9b,0x9c,0x9d,0x9e,0x9a,0x2e,
0xa1,0xa2,0x13,0x09,0x00,0x3b
};
/* Generated by reswrap from file minifolder.gif */
const unsigned char minifolder[]={
0x47,0x49,0x46,0x38,0x37,0x61,0x10,0x00,0x10,0x00,0xf2,0x00,0x00,0xb2,0xc0,0xdc,
0x80,0x80,0x80,0xc0,0xc0,0xc0,0xff,0xff,0x00,0x00,0x00,0x00,0xff,0xff,0xff,0x00,
0x00,0x00,0x00,0x00,0x00,0x2c,0x00,0x00,0x00,0x00,0x10,0x00,0x10,0x00,0x00,0x03,
0x3b,0x08,0xba,0xdc,0x1b,0x10,0x3a,0x16,0xc4,0xb0,0x22,0x4c,0x50,0xaf,0xcf,0x91,
0xc4,0x15,0x64,0x69,0x92,0x01,0x31,0x7e,0xac,0x95,0x8e,0x58,0x7b,0xbd,0x41,0x21,
0xc7,0x74,0x11,0xef,0xb3,0x5a,0xdf,0x9e,0x1c,0x6f,0x97,0x03,0xba,0x7c,0xa1,0x64,
0x48,0x05,0x20,0x38,0x9f,0x50,0xe8,0x66,0x4a,0x75,0x24,0x00,0x00,0x3b
};
// Object implementation
FXIMPLEMENT(IconListWindow,FXMainWindow,NULL,0)
// Make some windows
IconListWindow::IconListWindow(FXApp* a):FXMainWindow(a,"Icon List Test",NULL,NULL,DECOR_ALL,0,0,800,600){
int i;
// Menu bar
menubar=new FXMenubar(this,LAYOUT_SIDE_TOP|LAYOUT_FILL_X);
// File menu
filemenu=new FXMenuPane(this);
new FXMenuCommand(filemenu,"&Quit\tCtl-Q",NULL,getApp(),FXApp::ID_QUIT);
new FXMenuTitle(menubar,"&File",NULL,filemenu);
// Status bar
FXStatusbar *status=new FXStatusbar(this,LAYOUT_SIDE_BOTTOM|LAYOUT_FILL_X|STATUSBAR_WITH_DRAGCORNER);
// Main window interior
group=new FXVerticalFrame(this,LAYOUT_FILL_X|LAYOUT_FILL_Y, 0,0,0,0, 0,0,0,0);
// Files
new FXLabel(group,"Icon List WIdget",NULL,LAYOUT_TOP|LAYOUT_FILL_X|FRAME_SUNKEN);
subgroup=new FXVerticalFrame(group,FRAME_SUNKEN|FRAME_THICK|LAYOUT_FILL_X|LAYOUT_FILL_Y, 0,0,0,0, 0,0,0,0);
FXDebugTarget *dbg=new FXDebugTarget();
// Icon list on the right
iconlist=new FXIconList(subgroup,dbg,1,LAYOUT_FILL_X|LAYOUT_FILL_Y|ICONLIST_BIG_ICONS|ICONLIST_EXTENDEDSELECT);
iconlist->appendHeader("Name",NULL,200);
iconlist->appendHeader("Type",NULL,100);
iconlist->appendHeader("Size",NULL,60);
iconlist->appendHeader("Modified Date",NULL,150);
iconlist->appendHeader("User",NULL,50);
iconlist->appendHeader("Group",NULL,50);
FXGIFIcon* big_folder=new FXGIFIcon(getApp(),bigfolder);
FXGIFIcon* mini_folder=new FXGIFIcon(getApp(),minifolder);
iconlist->appendItem("Really BIG and wide item to test\tDocument\t10000\tJune 13, 1999\tUser\tSoftware",big_folder,mini_folder);
for(i=1; i<400; i++){
iconlist->appendItem("Filename_"+FXStringVal(i)+"\tDocument\t10000\tJune 13, 1999\tUser\tSoftware",big_folder,mini_folder);
}
iconlist->setCurrentItem(iconlist->getNumItems()-1);
// Arrange menu
arrangemenu=new FXMenuPane(this);
new FXMenuCommand(arrangemenu,"&Details",NULL,iconlist,FXIconList::ID_SHOW_DETAILS);
new FXMenuCommand(arrangemenu,"&Small Icons",NULL,iconlist,FXIconList::ID_SHOW_MINI_ICONS);
new FXMenuCommand(arrangemenu,"&Big Icons",NULL,iconlist,FXIconList::ID_SHOW_BIG_ICONS);
new FXMenuCommand(arrangemenu,"&Rows",NULL,iconlist,FXIconList::ID_ARRANGE_BY_ROWS);
new FXMenuCommand(arrangemenu,"&Columns",NULL,iconlist,FXIconList::ID_ARRANGE_BY_COLUMNS);
new FXMenuTitle(menubar,"&Arrange",NULL,arrangemenu);
// Sort menu
sortmenu=new FXMenuPane(this);
new FXMenuCommand(sortmenu,"&Name",NULL,iconlist,FXFileList::ID_SORT_BY_NAME);
new FXMenuCommand(sortmenu,"&Type",NULL,iconlist,FXFileList::ID_SORT_BY_TYPE);
new FXMenuCommand(sortmenu,"&Size",NULL,iconlist,FXFileList::ID_SORT_BY_SIZE);
new FXMenuCommand(sortmenu,"T&ime",NULL,iconlist,FXFileList::ID_SORT_BY_TIME);
new FXMenuCommand(sortmenu,"&User",NULL,iconlist,FXFileList::ID_SORT_BY_USER);
new FXMenuCommand(sortmenu,"&Group",NULL,iconlist,FXFileList::ID_SORT_BY_GROUP);
new FXMenuCommand(sortmenu,"&Reverse",NULL,iconlist,FXFileList::ID_SORT_REVERSE);
new FXMenuCommand(sortmenu,"Hide status",NULL,status,FXWindow::ID_HIDE);
new FXMenuCommand(sortmenu,"Show status",NULL,status,FXWindow::ID_SHOW);
new FXMenuTitle(menubar,"&Sort",NULL,sortmenu);
}
IconListWindow::~IconListWindow(){
delete filemenu;
delete arrangemenu;
delete sortmenu;
}
// Make application
void IconListWindow::create(){
FXMainWindow::create();
show();
}
/*******************************************************************************/
// Start the whole thing
int main(int argc,char *argv[]){
FXApp application("IconList","FoxTest");
application.init(argc,argv);
new IconListWindow(&application);
application.create();
return application.run();
}
|