DateiDialog.cpp 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241
  1. #include "DateiDialog.h"
  2. #include "Text.h"
  3. #include <ShObjIdl.h>
  4. #pragma comment( lib, "Ole32.lib" )
  5. #pragma comment( linker, "/manifestdependency:\"type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='*' publicKeyToken='6595b64144ccf1df' language='*'\"" )
  6. void Framework::InitDialog()
  7. {
  8. CoInitialize( 0 );
  9. }
  10. using namespace Framework;
  11. // Inhalt der DateiDialog Klasse aus DateiDialog.h
  12. // Konstruktor
  13. DateiDialog::DateiDialog()
  14. : ReferenceCounter()
  15. {
  16. typeName = new RCArray< Text >();
  17. type = new RCArray< Text >();
  18. fileIndex = 1;
  19. }
  20. // Destruktor
  21. DateiDialog::~DateiDialog()
  22. {
  23. typeName->release();
  24. type->release();
  25. }
  26. // nicht constant
  27. void DateiDialog::removeDateiTypen()
  28. {
  29. typeName->leeren();
  30. type->leeren();
  31. }
  32. void DateiDialog::addDateiTyp( const char* name, const char* typ )
  33. {
  34. addDateiTyp( new Text( name ), new Text( typ ) );
  35. }
  36. void DateiDialog::addDateiTyp( Text* name, Text* typ )
  37. {
  38. typeName->add( name );
  39. type->add( typ );
  40. }
  41. void DateiDialog::setDateiTypAuswahl( int i )
  42. {
  43. fileIndex = i + 1;
  44. }
  45. // constant
  46. Text* DateiDialog::anzeigen( bool open ) const
  47. {
  48. IFileDialog* pfd = NULL;
  49. CoInitialize( NULL );
  50. HRESULT hr = 0;
  51. if( open )
  52. {
  53. CoCreateInstance( CLSID_FileOpenDialog,
  54. NULL,
  55. CLSCTX_INPROC_SERVER,
  56. IID_PPV_ARGS( &pfd ) );
  57. }
  58. else
  59. {
  60. CoCreateInstance( CLSID_FileSaveDialog,
  61. NULL,
  62. CLSCTX_INPROC_SERVER,
  63. IID_PPV_ARGS( &pfd ) );
  64. }
  65. if( SUCCEEDED( hr ) )
  66. {
  67. DWORD dwFlags;
  68. hr = pfd->GetOptions( &dwFlags );
  69. if( SUCCEEDED( hr ) )
  70. {
  71. hr = pfd->SetOptions( dwFlags | FOS_FORCEFILESYSTEM );
  72. if( SUCCEEDED( hr ) )
  73. {
  74. int anz = type->getEintragAnzahl();
  75. COMDLG_FILTERSPEC* c_rgSaveTypes = 0;
  76. if( !anz )
  77. {
  78. c_rgSaveTypes = new COMDLG_FILTERSPEC[ 1 ];
  79. c_rgSaveTypes[ 0 ] = { L"Alle Dateien", L"*.*" };
  80. anz = 1;
  81. }
  82. else
  83. {
  84. c_rgSaveTypes = new COMDLG_FILTERSPEC[ anz ];
  85. for( int i = 0; i < anz; i++ )
  86. {
  87. wchar_t* n = new wchar_t[ typeName->z( i )->getLength() + 1 ];
  88. #pragma warning( disable : 4996 )
  89. mbstowcs( n, typeName->z( i )->getText(), typeName->z( i )->getLength() + 1 );
  90. wchar_t* t = new wchar_t[ type->z( i )->getLength() + 1 ];
  91. #pragma warning( disable : 4996 )
  92. mbstowcs( t, type->z( i )->getText(), type->z( i )->getLength() + 1 );
  93. c_rgSaveTypes[ i ].pszName = n;
  94. c_rgSaveTypes[ i ].pszSpec = t;
  95. }
  96. }
  97. hr = pfd->SetFileTypes( anz, c_rgSaveTypes );
  98. if( SUCCEEDED( hr ) )
  99. {
  100. hr = pfd->SetFileTypeIndex( fileIndex );
  101. if( SUCCEEDED( hr ) )
  102. {
  103. Text txt = "";
  104. for( int i = 0; i < anz; i++ )
  105. {
  106. if( !type->z( i )->hat( ".*" ) )
  107. {
  108. txt.append( type->z( i )->getTeilText( type->z( i )->positionVon( "." ) + 1 ) );
  109. txt += ";";
  110. }
  111. }
  112. if( txt.getLength() > 0 )
  113. txt.remove( txt.getLength() - 1 );
  114. wchar_t* defEnd = new wchar_t[ txt.getLength() + 1 ];
  115. #pragma warning( disable : 4996 )
  116. mbstowcs( defEnd, txt, txt.getLength() + 1 );
  117. hr = pfd->SetDefaultExtension( defEnd );
  118. if( SUCCEEDED( hr ) )
  119. {
  120. hr = pfd->Show( NULL );
  121. if( SUCCEEDED( hr ) )
  122. {
  123. IShellItem* psiResult;
  124. hr = pfd->GetResult( &psiResult );
  125. if( SUCCEEDED( hr ) )
  126. {
  127. PWSTR pszFilePath = NULL;
  128. hr = psiResult->GetDisplayName( SIGDN_FILESYSPATH,
  129. &pszFilePath );
  130. if( SUCCEEDED( hr ) )
  131. {
  132. char* txt = new char[ wcslen( pszFilePath ) + 1 ];
  133. #pragma warning( disable : 4996 )
  134. wcstombs( txt, pszFilePath, wcslen( pszFilePath ) + 1 );
  135. Text* ret = new Text( txt );
  136. delete[] txt;
  137. psiResult->Release();
  138. delete[] defEnd;
  139. for( int i = 0; i < anz; i++ )
  140. {
  141. delete[] c_rgSaveTypes[ i ].pszName;
  142. delete[] c_rgSaveTypes[ i ].pszSpec;
  143. }
  144. delete[] c_rgSaveTypes;
  145. pfd->Release();
  146. return ret;
  147. }
  148. psiResult->Release();
  149. }
  150. }
  151. }
  152. delete[] defEnd;
  153. }
  154. }
  155. for( int i = 0; i < anz; i++ )
  156. {
  157. delete[] c_rgSaveTypes[ i ].pszName;
  158. delete[] c_rgSaveTypes[ i ].pszSpec;
  159. }
  160. delete[] c_rgSaveTypes;
  161. }
  162. }
  163. pfd->Release();
  164. }
  165. return 0;
  166. }
  167. // Inhalt der DateiDialogTh Klasse aus DateiDialog.h
  168. // Konstruktor
  169. DateiDialogTh::DateiDialogTh()
  170. : Thread()
  171. {
  172. dialog = new DateiDialog();
  173. ret = 0;
  174. open = 0;
  175. }
  176. // Destruktor
  177. DateiDialogTh::~DateiDialogTh()
  178. {
  179. warteAufThread( 5000 );
  180. if( run )
  181. ende();
  182. dialog->release();
  183. if( ret )
  184. ret->release();
  185. }
  186. // nicht constant
  187. void DateiDialogTh::setOpen( bool b )
  188. {
  189. open = b;
  190. }
  191. void DateiDialogTh::removeDateiTypen()
  192. {
  193. dialog->removeDateiTypen();
  194. }
  195. void DateiDialogTh::addDateiTyp( const char* name, const char* typ )
  196. {
  197. dialog->addDateiTyp( name, typ );
  198. }
  199. void DateiDialogTh::addDateiTyp( Text* name, Text* typ )
  200. {
  201. dialog->addDateiTyp( name, typ );
  202. }
  203. void DateiDialogTh::setDateiTypAuswahl( int i )
  204. {
  205. dialog->setDateiTypAuswahl( i );
  206. }
  207. void DateiDialogTh::thread()
  208. {
  209. if( ret )
  210. ret = (Text*)ret->release();
  211. ret = dialog->anzeigen( open );
  212. }
  213. // constant
  214. Text* DateiDialogTh::getPfad() const
  215. {
  216. return ret ? dynamic_cast<Text*>(ret->getThis()) : 0;
  217. }
  218. Text* DateiDialogTh::zPfad() const
  219. {
  220. return ret;
  221. }