Diff for /np2/wince/Attic/filesel.cpp between versions 1.1 and 1.2

version 1.1, 2003/11/21 06:51:15 version 1.2, 2003/11/21 09:28:02
Line 20  enum { Line 20  enum {
         DID_FILTER          DID_FILTER
 };  };
   
 static const char str_dirname[] = "ファイルの場所";  static const BYTE str_dirname[] = {             // ファイルの場所
 static const char str_parent[] = "←";                  0xcc,0xa7,0xb2,0xd9,0x82,0xcc,0x8f,0xea,0x8f,0x8a,0};
 static const char str_filename[] = "ファイル名";  static const BYTE str_filename[] = {    // ファイル名
 static const char str_filetype[] = "ファイルの種類";                  0xcc,0xa7,0xb2,0xd9,0x96,0xbc,0};
 static const char str_open[] = "開く";  static const BYTE str_filetype[] = {    // ファイルの種類
                   0xcc,0xa7,0xb2,0xd9,0x82,0xcc,0x8e,0xed,0x97,0xde,0};
   static const BYTE str_open[] = {                // 開く
                   0x8a,0x4a,0x82,0xad,0};
   
   
 #if defined(SIZE_QVGA)  #if defined(SIZE_QVGA)
Line 38  static const MENUPRM res_fs[] = { Line 41  static const MENUPRM res_fs[] = {
                         {DLGTYPE_EDIT,          DID_FOLDER,             0,                          {DLGTYPE_EDIT,          DID_FOLDER,             0,
                                 NULL,                                                                    74,   6, 192,  16},                                  NULL,                                                                    74,   6, 192,  16},
                         {DLGTYPE_BUTTON,        DID_PARENT,             MENU_TABSTOP,                          {DLGTYPE_BUTTON,        DID_PARENT,             MENU_TABSTOP,
                                 str_parent,                                                             271,   5,  18,  18},                                  NULL,                                                                   272,   6,  16,  16},
                         {DLGTYPE_LIST,          DID_FLIST,              MENU_TABSTOP,                          {DLGTYPE_LIST,          DID_FLIST,              MENU_TABSTOP,
                                 NULL,                                                                     5,  28, 284, 115},                                  NULL,                                                                     5,  28, 284, 115},
                         {DLGTYPE_LTEXT,         DID_STATIC,             0,                          {DLGTYPE_LTEXT,         DID_STATIC,             0,
Line 64  static const MENUPRM res_fs[] = { Line 67  static const MENUPRM res_fs[] = {
                         {DLGTYPE_EDIT,          DID_FOLDER,             0,                          {DLGTYPE_EDIT,          DID_FOLDER,             0,
                                 NULL,                                                                   114,   7, 219,  18},                                  NULL,                                                                   114,   7, 219,  18},
                         {DLGTYPE_BUTTON,        DID_PARENT,             MENU_TABSTOP,                          {DLGTYPE_BUTTON,        DID_PARENT,             MENU_TABSTOP,
                                 str_parent,                                                             346,   5,  22,  22},                                  NULL,                                                                   348,   7,  18,  18},
                         {DLGTYPE_LIST,          DID_FLIST,              MENU_TABSTOP,                          {DLGTYPE_LIST,          DID_FLIST,              MENU_TABSTOP,
                                 NULL,                                                                     7,  30, 481, 128},                                  NULL,                                                                     7,  30, 481, 128},
                         {DLGTYPE_LTEXT,         DID_STATIC,             0,                          {DLGTYPE_LTEXT,         DID_STATIC,             0,
Line 231  static void dlgsetlist(void) { Line 234  static void dlgsetlist(void) {
 static void dlginit(void) {  static void dlginit(void) {
   
         menudlg_appends(res_fs, sizeof(res_fs)/sizeof(MENUPRM));          menudlg_appends(res_fs, sizeof(res_fs)/sizeof(MENUPRM));
           menudlg_seticon(DID_PARENT, MICON_FOLDERPARENT);
         menudlg_settext(DID_FILE, file_getname(filesel.path));          menudlg_settext(DID_FILE, file_getname(filesel.path));
         menudlg_settext(DID_FILTER, filesel.filter);          menudlg_settext(DID_FILTER, filesel.filter);
         file_cutname(filesel.path);          file_cutname(filesel.path);

Removed from v.1.1  
changed lines
  Added in v.1.2


RetroPC.NET-CVS <cvs@retropc.net>