Changeset 238
- Timestamp:
- Aug 27, 2007, 8:11:21 PM (18 years ago)
- Location:
- trunk/Lucide
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/Lucide/BIN/Lucide.lng ¶
r230 r238 247 247 FDLG_CANCEL=~Cancel 248 248 FDLG_NO_PREVIEW_AVAILABLE=No preview available 249 FDLG_ALL_SUPPORTED_TYPES=<All supported types> -
TabularUnified trunk/Lucide/BIN/Lucide_ru.lng ¶
r230 r238 246 246 FDLG_CANCEL=⪠§ 247 247 FDLG_NO_PREVIEW_AVAILABLE=ी¯à®á¬®âà ¥€®áâ㯥 248 FDLG_ALL_SUPPORTED_TYPES=<ᥠ¯®€€¥àŠš¢ ¥¬ë¥ ⚯ë> -
TabularUnified trunk/Lucide/SOURCE/gui/lcdfdlg.cpp ¶
r232 r238 10 10 11 11 #include "globals.h" 12 #include "pluginman.h" 12 13 #include "lucide_res.h" 13 14 #include "luutils.h" … … 15 16 16 17 17 static HWND hWndFrame = NULLHANDLE; 18 static HWND hWndFrame = NULLHANDLE; 19 static char *szAllSupportedTypes = NULL; 18 20 19 21 void previewFile( HWND hwnd, const char *fn ); … … 143 145 } 144 146 147 static bool isAllFiles( HWND hwnd ) 148 { 149 char ftext[ 200 ]; 150 WinQueryDlgItemText( hwnd, DID_FILTER_CB, sizeof( ftext ), ftext ); 151 return ( strcmp( ftext, szAllSupportedTypes ) != 0 ); 152 } 153 154 static BOOL checkFile( char *file, std::vector<std::string> *extList ) 155 { 156 BOOL rVal = FALSE; 157 std::vector<std::string>::const_iterator iter; 158 for ( iter = extList->begin(); iter != extList->end(); iter++ ) 159 { 160 char ext[ 100 ]; 161 ext[0] = '.'; 162 ext[1] = 0; 163 strcat( ext, (*iter).c_str() ); 164 int flen = strlen( file ); 165 int elen = strlen( ext ); 166 167 if ( flen < elen ) { 168 continue; 169 } 170 171 char *compare_pos = file + flen - elen; 172 if ( stricmp( compare_pos, ext ) == 0 ) { 173 rVal = TRUE; 174 break; 175 } 176 } 177 178 return rVal; 179 } 180 181 182 struct LcdFDlgData 183 { 184 bool isAllFiles; 185 std::vector<std::string> *extList; 186 187 LcdFDlgData() { 188 isAllFiles = false; 189 extList = new std::vector<std::string>; 190 } 191 192 ~LcdFDlgData() { 193 delete extList; 194 } 195 }; 145 196 146 197 static MRESULT EXPENTRY LcdFileDlgProc( HWND hwnd, ULONG msg, MPARAM mp1, MPARAM mp2 ) 147 198 { 199 FILEDLG *pfild = (FILEDLG *)WinQueryWindowULong( hwnd, QWL_USER ); 200 148 201 switch ( msg ) 149 202 { … … 154 207 centerWindow( hWndFrame, hwnd ); 155 208 previewImageCreate( WinWindowFromID( hwnd, IDC_PREVIEW ) ); 209 SHORT sInx = SHORT1FROMMR( WinSendDlgItemMsg( hwnd, DID_FILTER_CB, LM_SEARCHSTRING, 210 MPFROM2SHORT( LSS_CASESENSITIVE, 0 ), MPFROMP( szAllSupportedTypes ) ) ); 211 WinSendDlgItemMsg( hwnd, DID_FILTER_CB, LM_SELECTITEM, 212 MPFROMSHORT( sInx ), MPFROMSHORT( TRUE ) ); 213 214 ((LcdFDlgData *)pfild->ulUser)->isAllFiles = isAllFiles( hwnd ); 156 215 } 157 216 break; 158 217 218 case FDM_FILTER: 219 if ( ((LcdFDlgData *)pfild->ulUser)->isAllFiles ) { 220 return (MRESULT)TRUE; 221 } 222 else { 223 return (MRESULT)checkFile( (char *)mp1, 224 ((LcdFDlgData *)pfild->ulUser)->extList ); 225 } 226 159 227 case WM_CONTROL: 160 228 { 161 switch ( SHORT1FROMMP(mp1))229 switch ( SHORT1FROMMP(mp1) ) 162 230 { 163 231 case DID_FILES_LB: 164 232 if (SHORT2FROMMP(mp1) == LN_SELECT) 165 233 { 166 const MRESULT mr = WinDefFileDlgProc( hwnd, msg, mp1, mp2);234 const MRESULT mr = WinDefFileDlgProc( hwnd, msg, mp1, mp2 ); 167 235 168 236 const HWND lbHwnd = HWNDFROMMP(mp2); … … 170 238 171 239 char itemText[ CCHMAXPATH ] = { 0 }; 172 173 240 174 241 if ( index >= 0 ) 175 242 { 176 243 char fn[ CCHMAXPATH ] = { 0 }; 177 FILEDLG *pfild = (FILEDLG *)WinQueryWindowULong(hwnd, QWL_USER);178 244 WinQueryLboxItemText( lbHwnd, (SHORT)index, itemText, CCHMAXPATH ); 179 245 strcpy( fn, pfild->szFullFile ); … … 185 251 } 186 252 break; 253 254 case DID_FILTER_CB: 255 ((LcdFDlgData *)pfild->ulUser)->isAllFiles = isAllFiles( hwnd ); 256 break; 187 257 } 188 258 } … … 198 268 { 199 269 hWndFrame = hwndO; 270 if ( szAllSupportedTypes == NULL ) { 271 szAllSupportedTypes = newstrdupL( FDLG_ALL_SUPPORTED_TYPES ); 272 } 200 273 201 274 pfild->fl |= FDS_CUSTOM; … … 208 281 pfild->usDlgId = IDD_LCD_FILEDLG; 209 282 210 return WinFileDlg( hwndP, hwndO, pfild ); 283 char **apsz; 284 apsz = (char **)malloc( sizeof( char* ) * 2 ); 285 apsz[ 0 ] = szAllSupportedTypes; 286 apsz[ 1 ] = NULL; 287 pfild->papszITypeList = (PAPSZ)apsz; 288 pfild->ulUser = (ULONG)new LcdFDlgData; 289 pluginMan->getExtsList( ((LcdFDlgData *)pfild->ulUser)->extList ); 290 HWND hDlg = WinFileDlg( hwndP, hwndO, pfild ); 291 free( apsz ); 292 delete ((LcdFDlgData *)pfild->ulUser); 293 return hDlg; 211 294 } 212 295 -
TabularUnified trunk/Lucide/SOURCE/gui/lucide.cpp ¶
r237 r238 588 588 void Lucide::openDocument() 589 589 { 590 char dirbuf[ CCHMAXPATH ];591 590 PFILEDLG fd = new FILEDLG; 592 591 memset( fd, 0, sizeof( FILEDLG ) ); … … 594 593 fd->fl = FDS_CENTER | FDS_OPEN_DIALOG; 595 594 PrfQueryProfileString( HINI_USERPROFILE, appName, lvd, "", 596 dirbuf, sizeof( dirbuf ) ); 597 snprintf( fd->szFullFile, sizeof( fd->szFullFile ), 598 "%s%s", dirbuf, pluginMan->getExtsMask().c_str() ); 595 fd->szFullFile, sizeof( fd->szFullFile ) ); 599 596 LcdFileDlg( HWND_DESKTOP, hWndFrame, fd ); 600 597 if ( fd->lReturn == DID_OK ) -
TabularUnified trunk/Lucide/SOURCE/gui/messages.cpp ¶
r230 r238 131 131 // Open file dialog 132 132 const char *FDLG_NO_PREVIEW_AVAILABLE = "FDLG_NO_PREVIEW_AVAILABLE"; 133 const char *FDLG_ALL_SUPPORTED_TYPES = "FDLG_ALL_SUPPORTED_TYPES"; -
TabularUnified trunk/Lucide/SOURCE/gui/messages.h ¶
r230 r238 132 132 // Open file dialog 133 133 extern const char *FDLG_NO_PREVIEW_AVAILABLE; 134 extern const char *FDLG_ALL_SUPPORTED_TYPES; 134 135 135 136 -
TabularUnified trunk/Lucide/SOURCE/gui/pluginman.cpp ¶
r234 r238 315 315 p = strtok( NULL, ";" ); 316 316 } 317 delete tmpexts; 317 318 } 318 319 return cRet; 319 320 } 320 321 321 322 void PluginManager::getExtsList( std::vector<std::string> *list ) 323 { 324 for ( int i = 0; i < plugins->size(); i++ ) 325 { 326 PluginInfo *pi = &(*plugins)[ i ]; 327 char *tmpexts = newstrdup( pi->extensions.c_str() ); 328 char *p = strtok( tmpexts, ";" ); 329 while ( p != NULL ) { 330 list->push_back( p ); 331 p = strtok( NULL, ";" ); 332 } 333 delete tmpexts; 334 } 335 } 336 337 -
TabularUnified trunk/Lucide/SOURCE/gui/pluginman.h ¶
r217 r238 67 67 LuDocument *createDocumentForExt( const char *ext, bool checkOnly ); 68 68 std::string getExtsMask(); 69 void getExtsList( std::vector<std::string> *list ); 69 70 }; 70 71
Note:
See TracChangeset
for help on using the changeset viewer.