/[winpt]/trunk/Include/wptRegistry.h
ViewVC logotype

Diff of /trunk/Include/wptRegistry.h

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 36 by twoaday, Tue Oct 25 07:46:20 2005 UTC revision 37 by werner, Thu Oct 27 19:12:40 2005 UTC
# Line 1  Line 1 
1  /* wptRegistry.h - Win32 Registry headerfile  /* wptRegistry.h - Win32 Registry headerfile
2   *      Copyright (C) 2000-2005 Timo Schulz   *      Copyright (C) 2000-2005 Timo Schulz
3   *   *
4   * This file is part of WinPT.   * This file is part of WinPT.
5   *   *
6   * WinPT is free software; you can redistribute it and/or   * WinPT is free software; you can redistribute it and/or
7   * modify it under the terms of the GNU General Public License   * modify it under the terms of the GNU General Public License
8   * as published by the Free Software Foundation; either version 2   * as published by the Free Software Foundation; either version 2
9   * of the License, or (at your option) any later version.   * of the License, or (at your option) any later version.
10   *     *  
11   * WinPT is distributed in the hope that it will be useful,   * WinPT is distributed in the hope that it will be useful,
12   * but WITHOUT ANY WARRANTY; without even the implied warranty of   * but WITHOUT ANY WARRANTY; without even the implied warranty of
13   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14   * General Public License for more details.   * General Public License for more details.
15   *   *
16   * You should have received a copy of the GNU General Public License   * You should have received a copy of the GNU General Public License
17   * along with WinPT; if not, write to the Free Software Foundation,   * along with WinPT; if not, write to the Free Software Foundation,
18   * Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA   * Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19   */   */
20    
21  #ifndef WPT_REGISTRY_H  #ifndef WPT_REGISTRY_H
22  #define WPT_REGISTRY_H  #define WPT_REGISTRY_H
23    
24  /* Symbolic configuration IDs */  /* Symbolic configuration IDs */
25  enum cfg_t {  enum cfg_t {
26      CFG_INVALID=0,      CFG_INVALID=0,
27      CFG_CACHETIME,      CFG_CACHETIME,
28      CFG_WORDWRAP,      CFG_WORDWRAP,
29      CFG_FASTMODE,      CFG_FASTMODE,
30      CFG_VIEWER,      CFG_VIEWER,
31      CFG_KEYLISTMODE,      CFG_KEYLISTMODE,
32      CFG_WIPEMODE,      CFG_WIPEMODE,
33      CFG_ALWAYSTRUST,      CFG_ALWAYSTRUST,
34      CFG_AUTOBACKUP,      CFG_AUTOBACKUP,
35      CFG_AUTOBAKMODE,      CFG_AUTOBAKMODE,
36      CFG_DISHOTKEYS,      CFG_DISHOTKEYS,
37      CFG_NOZIP_MMEDIA,      CFG_NOZIP_MMEDIA,
38      CFG_EXPERT,      CFG_EXPERT,
39      CFG_FM_PROGRESS,      CFG_FM_PROGRESS,
40      /* end of id list */      /* end of id list */
41      CFG_AUTOBAKPATH,      CFG_AUTOBAKPATH,
42      CFG_KSERV_CONF,      CFG_KSERV_CONF,
43  };  };
44    
45    
46  struct reg_hotkey_s {  struct reg_hotkey_s {
47      const char *reg_entry;      const char *reg_entry;
48      char key[2];            /* the hotkey as a char ('A'). */      char key[2];            /* the hotkey as a char ('A'). */
49      int enabled;            /* 1=enable this hotkey. */      int enabled;            /* 1=enable this hotkey. */
50  };  };
51  typedef struct reg_hotkey_s * reg_hotkey_t;  typedef struct reg_hotkey_s * reg_hotkey_t;
52    
53  struct winpt_reg_prefs_s {  struct winpt_reg_prefs_s {
54      int no_hotkeys;     /* disable ALL hotkeys */      int no_hotkeys;     /* disable ALL hotkeys */
55      int word_wrap;      /* set word wrapping (0 means to disable it) */      int word_wrap;      /* set word wrapping (0 means to disable it) */
56      int cache_time;     /* caching time for passphrase */      int cache_time;     /* caching time for passphrase */
57      int use_tmpfiles;   /* use tempfiles for gpg communication */      int use_tmpfiles;   /* use tempfiles for gpg communication */
58      int use_viewer;     /* use clipboard viewer for displaying plaintext */      int use_viewer;     /* use clipboard viewer for displaying plaintext */
59      int no_zip_mmedia;  /* disable compression for multi-media files (movies, music) */      int no_zip_mmedia;  /* disable compression for multi-media files (movies, music) */
60      int keylist_mode;   /* normal=0 minimal=1 or  */      int keylist_mode;   /* normal=0 minimal=1 or  */
61      int wipe_mode;      /* simple=0, dod=1, gutmann=2 */      int wipe_mode;      /* simple=0, dod=1, gutmann=2 */
62      int always_trust;   /* skip key validation (1 means yes) */      int always_trust;   /* skip key validation (1 means yes) */
63      int auto_backup;    /* automatic backup (1 means activated) */      int auto_backup;    /* automatic backup (1 means activated) */
64      struct {      struct {
65          int mode;       /* backup mode */          int mode;       /* backup mode */
66          char *path;     /* keyring backup path */          char *path;     /* keyring backup path */
67      } backup;      } backup;
68      char *kserv_conf;   /* path to the keyserver config file. */      char *kserv_conf;   /* path to the keyserver config file. */
69      int expert;         /* run in expert mode. */      int expert;         /* run in expert mode. */
70      struct {      struct {
71          int progress;   /* show the progress bar dialog. */          int progress;   /* show the progress bar dialog. */
72      } fm;      } fm;
73      char *homedir;     /* mobile home directory. */      char *homedir;     /* mobile home directory. */
74  };  };
75    
76  extern reg_hotkey_s reg_hotkeys[];  extern reg_hotkey_s reg_hotkeys[];
77  extern winpt_reg_prefs_s reg_prefs;  extern winpt_reg_prefs_s reg_prefs;
78    
79  /*-- wptHotkey.cpp --*/  /*-- wptHotkey.cpp --*/
80  void hotkeys_modify (void);  void hotkeys_modify (void);
81  void hotkey_disable (reg_hotkey_t rhk);  void hotkey_disable (reg_hotkey_t rhk);
82  void hotkey_enable (reg_hotkey_t rhk, const char * key);  void hotkey_enable (reg_hotkey_t rhk, const char * key);
83    
84  /*-- wptRegistry.cpp --*/  /*-- wptRegistry.cpp --*/
85  void free_reg_prefs (void);  void free_reg_prefs (void);
86  int regist_inst_gnupg (int create_mokey);  int regist_inst_gnupg (int create_mokey);
87  int regist_inst_winpt (int with_ext, int *created);  int regist_inst_winpt (int with_ext, int *created);
88  int create_file_type (const char * exefile, const char * ext,  int create_file_type (const char * exefile, const char * ext,
89                        const char * extname, char *iconfile );                        const char * extname, char *iconfile );
90  int set_reg_winpt_single (int id, int val);  int set_reg_winpt_single (int id, int val);
91  int get_reg_winpt_single (int id);  int get_reg_winpt_single (int id);
92  int set_reg_winpt_prefs (winpt_reg_prefs_s * opt);  int set_reg_winpt_prefs (winpt_reg_prefs_s * opt);
93  int get_reg_winpt_prefs (winpt_reg_prefs_s * opt);  int get_reg_winpt_prefs (winpt_reg_prefs_s * opt);
94  char* get_reg_entry( HKEY root_key, const char * dir, const char * key );  char* get_reg_entry( HKEY root_key, const char * dir, const char * key );
95  int set_reg_entry( HKEY root_key, const char * dir, const char * key,  int set_reg_entry( HKEY root_key, const char * dir, const char * key,
96                                     const char * value );                                     const char * value );
97  int set_reg_key( HKEY root_key, const char * dir, const char * key,  int set_reg_key( HKEY root_key, const char * dir, const char * key,
98                                   const char * value );                                   const char * value );
99  int set_reg_entry_gpg( const char * key, const char * value );  int set_reg_entry_gpg( const char * key, const char * value );
100  int set_reg_entry_mo( const char * value );  int set_reg_entry_mo( const char * value );
101  char* get_reg_entry_gpg( const char * key );  char* get_reg_entry_gpg( const char * key );
102  char* get_reg_entry_mo( void );  char* get_reg_entry_mo( void );
103  void get_reg_proxy_prefs( char ** host, int * port,  void get_reg_proxy_prefs( char ** host, int * port,
104                            char ** user, char ** pass );                            char ** user, char ** pass );
105  int set_reg_proxy_prefs( const char * host, int port,  int set_reg_proxy_prefs( const char * host, int port,
106                           const char * user, const char * pass );                           const char * user, const char * pass );
107  int set_reg_entry_keyserver( const char * name, const char * val );  int set_reg_entry_keyserver( const char * name, const char * val );
108  char * get_reg_entry_keyserver( const char * name );  char * get_reg_entry_keyserver( const char * name );
109  int set_reg_winpt_flag( const char * name, int val );  int set_reg_winpt_flag( const char * name, int val );
110  int get_reg_winpt_flag( const char * name );  int get_reg_winpt_flag( const char * name );
111    
112  #endif /* WPT_REGISTRY_H */  #endif /* WPT_REGISTRY_H */

Legend:
Removed from v.36  
changed lines
  Added in v.37

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26