| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- /******************************************************************************/
- /******************************************************************************/
- class ProjectSettings : ClosableWindow
- {
- class CompressType
- {
- COMPRESS_TYPE type;
- cchar *desc;
- cchar8 *name;
- };
- Button randomize_key;
- TextLine cipher_key;
- Text compress, mtrl_simplify_t, text_data_t;
- ComboBox cipher_type, compress_type, compress_level, mtrl_simplify, text_data;
- Button ok;
- TextBlack ts;
- static CompressType cmpr_type[]
- ;
- static cchar8 *cmpr_lvl[]
- ;
- static NameDesc mtrl_simplify_nd[]
- ; ASSERT(MS_NEVER==0 && MS_MOBILE==1 && MS_ALWAYS==2);
- static cchar8 *text_data_modes[]
- ;
- static void CipherChanged (ProjectSettings &ps);
- static void EncryptionKeyChanged (ProjectSettings &ps);
- static void RandomizeEncryptionKey (ProjectSettings &ps);
- static void CompressTypeChanged (ProjectSettings &ps);
- static void CompressLevelChanged (ProjectSettings &ps);
- static void MaterialSimplifyChanged(ProjectSettings &ps);
- static void TextDataChanged (ProjectSettings &ps);
- COMPRESS_TYPE compressType ();
- int compressLevel();
- MATERIAL_SIMPLIFY mtrlSimplify()C;
- void toGui();
- void create();
- void display();
- };
- /******************************************************************************/
- /******************************************************************************/
- extern ProjectSettings ProjSettings;
- /******************************************************************************/
|