/[winpt]/trunk/Src/wptClipSignEncDlg.cpp
ViewVC logotype

Diff of /trunk/Src/wptClipSignEncDlg.cpp

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

revision 68 by twoaday, Sat Nov 5 12:00:55 2005 UTC revision 328 by twoaday, Fri Sep 25 16:07:38 2009 UTC
# Line 1  Line 1 
1  /* wptSignEncDlg.cpp - Sign & encrypt dialog  /* wptSignEncDlg.cpp - Sign & encrypt dialog
2   *      Copyright (C) 2000-2005 Timo Schulz   *      Copyright (C) 2000-2006, 2009 Timo Schulz
3   *   *
4   * This file is part of WinPT.   * This file is part of WinPT.
5   *   *
# Line 12  Line 12 
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   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14   * GNU General Public License for more details.   * GNU General Public License for more details.
  *  
  * You should have received a copy of the GNU General Public License  
  * along with WinPT; if not, write to the Free Software Foundation,  
  * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA  
15   */   */
   
16  #ifdef HAVE_CONFIG_H  #ifdef HAVE_CONFIG_H
17  #include <config.h>  #include <config.h>
18  #endif  #endif
# Line 62  gpg_clip_sign_encrypt (gpgme_ctx_t ctx, Line 57  gpg_clip_sign_encrypt (gpgme_ctx_t ctx,
57          return gpg_error (GPG_ERR_NO_PUBKEY);          return gpg_error (GPG_ERR_NO_PUBKEY);
58    
59      gpgme_set_armor (ctx, 1);      gpgme_set_armor (ctx, 1);
60        gpgme_set_textmode (ctx, 1);
61            
62      err = gpg_data_new_from_clipboard (&plain, 0);      err = gpg_data_utf8_new_from_clipboard (&plain, 0, NULL);
63      if (err)      if (err)
64          goto leave;            goto leave;  
65      err = gpgme_data_new (&ciph);      err = gpgme_data_new (&ciph);
# Line 79  gpg_clip_sign_encrypt (gpgme_ctx_t ctx, Line 75  gpg_clip_sign_encrypt (gpgme_ctx_t ctx,
75      if (err)      if (err)
76          goto leave;          goto leave;
77    
78      gpg_data_release_and_set_clipboard (ciph, 1);      gpg_data_release_to_clipboard (ciph, 1);
79      ciph = NULL;      ciph = NULL;
80    
81  leave:  leave:
# Line 95  leave: Line 91  leave:
91  BOOL CALLBACK  BOOL CALLBACK
92  clip_signenc_dlg_proc (HWND dlg, UINT msg, WPARAM wparam, LPARAM lparam)  clip_signenc_dlg_proc (HWND dlg, UINT msg, WPARAM wparam, LPARAM lparam)
93  {  {
94      static listview_ctrl_t lv = NULL;      static keylist_ctrl_t kl = NULL;
95      static keylist_t list = NULL;      static keylist_t list = NULL;
96        static int keys_sortby = 0;
97      gpg_keycache_t kc;      gpg_keycache_t kc;
98      gpgme_key_t *rset;      gpgme_key_t *rset;
99      gpgme_error_t err;      gpgme_error_t err;
100      gpgme_ctx_t ctx;      gpgme_ctx_t ctx;
101      passphrase_cb_s pwd;      passphrase_cb_s pwd;
102      char *signer = NULL;      char *signer = NULL;
103        size_t n;
104      int force_trust = 0;      int force_trust = 0;
     int kmode = reg_prefs.keylist_mode? KEYLIST_ENCRYPT_MIN : KEYLIST_ENCRYPT;  
     int n;  
105            
106      switch( msg ) {      switch (msg) {
107      case WM_INITDIALOG:      case WM_INITDIALOG:
108          SetWindowText (dlg, _("Sign & Encrypt"));          SetWindowText (dlg, _("Sign & Encrypt"));
109            SetDlgItemText (dlg, IDCANCEL, _("&Cancel"));
110          kc = keycache_get_ctx( KEYCACHE_PUB );          kc = keycache_get_ctx (KEYCACHE_PUB);
111          if( !kc )          kl = keylist_load (GetDlgItem (dlg, IDC_SIGNENC_KEYLIST),
112              BUG( NULL );                             kc, NULL, KEYLIST_ENCRYPT_MIN, KEY_SORT_USERID);
113          lv = keylist_load( GetDlgItem( dlg, IDC_SIGNENC_KEYLIST ),          seclist_init (dlg, IDC_SIGNENC_SECLIST, KEYLIST_FLAG_SHORT, &list);
                            kc, NULL, kmode, KEY_SORT_USERID);  
         seclist_init( dlg, IDC_SIGNENC_SECLIST, KEYLIST_FLAG_SHORT, &list );  
114          center_window (dlg, NULL);          center_window (dlg, NULL);
         set_active_window (dlg);  
115          EnableWindow (GetDlgItem (dlg, IDC_SIGNENC_SECLIST), FALSE);          EnableWindow (GetDlgItem (dlg, IDC_SIGNENC_SECLIST), FALSE);
116          SetDlgItemText (dlg, IDC_SIGNENC_SELKEY, _("Select key for signing"));          SetDlgItemText (dlg, IDC_SIGNENC_SELKEY, _("Select key for signing"));
117          SetDlgItemText (dlg, IDC_SIGNENC_SECLISTINF, _("Signing key:"));          SetDlgItemText (dlg, IDC_SIGNENC_SECLISTINF, _("Signing key:"));
# Line 127  clip_signenc_dlg_proc (HWND dlg, UINT ms Line 120  clip_signenc_dlg_proc (HWND dlg, UINT ms
120                    
121      case WM_DESTROY:      case WM_DESTROY:
122          seclist_destroy (&list);          seclist_destroy (&list);
123          reset_active_window ();          if (kl) {
124          if (lv) {              keylist_delete (kl);
125              keylist_delete (lv);              kl = NULL;
             lv = NULL;  
126          }          }
127          return FALSE;          return FALSE;
128                    
129      case WM_NOTIFY:      case WM_NOTIFY:
130          NMHDR * notify;          int ret;
131            ret = keylist_listview_notify (dlg, kl->keys,
132                                           IDC_SIGNENC_KEYLIST, lparam);
133            if (ret != 0) {
134                SetWindowLong (dlg, DWL_MSGRESULT, ret);
135                return TRUE;
136            }
137            
138            NMHDR *notify;
139          notify = (NMHDR *)lparam;          notify = (NMHDR *)lparam;
140          if (notify && notify->code == NM_DBLCLK          if (notify && notify->code == NM_DBLCLK
141              && notify->idFrom == IDC_SIGNENC_KEYLIST)              && notify->idFrom == IDC_SIGNENC_KEYLIST)
142              PostMessage (dlg, WM_COMMAND, MAKEWPARAM (IDOK, 0), 0);              PostMessage (dlg, WM_COMMAND, MAKEWPARAM (IDOK, 0), 0);
143            
144            if (notify && notify->code == LVN_COLUMNCLICK &&
145                notify->idFrom == IDC_SIGNENC_KEYLIST) {
146                NMLISTVIEW *p = (LPNMLISTVIEW) lparam;
147                int sortby = 0;
148    
149                switch (p->iSubItem) {
150                case  0: sortby = KEY_SORT_USERID; break;
151                case  1: sortby = KEY_SORT_KEYID; break;
152                case  2: sortby = KEY_SORT_LEN; break;
153                case  4: sortby = KEY_SORT_VALIDITY; break;
154                default: sortby = KEY_SORT_USERID; break;
155                }
156                if ((keys_sortby & ~KEYLIST_SORT_DESC) == sortby)
157                    keys_sortby ^= KEYLIST_SORT_DESC;
158                else
159                    keys_sortby = sortby;
160                keylist_sort (kl, keys_sortby);
161            }
162          return TRUE;          return TRUE;
163                    
     case WM_SYSCOMMAND:  
         if( LOWORD (wparam) == SC_CLOSE )  
             EndDialog( dlg, TRUE );  
         return FALSE;  
           
164      case WM_COMMAND:      case WM_COMMAND:
165          if (HIWORD (wparam) == BN_CLICKED          if (HIWORD (wparam) == BN_CLICKED
166              && LOWORD (wparam) == IDC_SIGNENC_SELKEY) {              && LOWORD (wparam) == IDC_SIGNENC_SELKEY) {
167              int enable = IsDlgButtonChecked (dlg, IDC_SIGNENC_SELKEY);              int enable = IsDlgButtonChecked (dlg, IDC_SIGNENC_SELKEY);
168              EnableWindow (GetDlgItem (dlg, IDC_SIGNENC_SECLIST), enable? TRUE : FALSE);              EnableWindow (GetDlgItem (dlg, IDC_SIGNENC_SECLIST), enable? TRUE : FALSE);
169          }          }
170          switch( LOWORD( wparam ) ) {          switch (LOWORD (wparam)) {
171          case IDOK:          case IDOK:
172              rset = keylist_get_recipients( lv, &force_trust, &n );              rset = keylist_get_recipients (kl, &force_trust, &n);
173              if (!n) {              if (!n) {
174                  msg_box( dlg, _("You must select at least one key."), _("Sign & Encrypt"), MB_ERR );                  msg_box (dlg, _("You must select at least one key."),
175                             _("Sign & Encrypt"), MB_ERR);
176                  return FALSE;                  return FALSE;
177              }              }
178              if( IsDlgButtonChecked( dlg, IDC_SIGNENC_SELKEY ) ) {              if (IsDlgButtonChecked (dlg, IDC_SIGNENC_SELKEY)) {
179                  gpgme_key_t key;                  gpgme_key_t key;
180                  const char * s;                  const char *s;
181    
182                  if( seclist_select_key( dlg, IDC_SIGNENC_SECLIST, &key ) ) {                  if (seclist_select_key (dlg, IDC_SIGNENC_SECLIST, &key)) {
183                      msg_box( dlg, _("No key was selected."), _("Signing"), MB_ERR );                      msg_box (dlg, _("No key was selected."), _("Signing"), MB_ERR);
184                        safe_free (rset);
185                      return FALSE;                      return FALSE;
186                  }                  }
187                  s = key->subkeys->keyid;                  s = key->subkeys->keyid;
# Line 176  clip_signenc_dlg_proc (HWND dlg, UINT ms Line 192  clip_signenc_dlg_proc (HWND dlg, UINT ms
192                  signer = get_gnupg_default_key ();                  signer = get_gnupg_default_key ();
193                  if (!signer) {                  if (!signer) {
194                      msg_box (dlg, _("Could not get default key."), _("Signing"), MB_ERR);                      msg_box (dlg, _("Could not get default key."), _("Signing"), MB_ERR);
195                        safe_free (rset);
196                      return FALSE;                      return FALSE;
197                  }                  }
198              }              }
# Line 186  clip_signenc_dlg_proc (HWND dlg, UINT ms Line 203  clip_signenc_dlg_proc (HWND dlg, UINT ms
203              set_gpg_passphrase_cb (&pwd, ctx, GPG_CMD_SIGN, dlg, _("Sign & Encrypt"));              set_gpg_passphrase_cb (&pwd, ctx, GPG_CMD_SIGN, dlg, _("Sign & Encrypt"));
204              err = gpg_clip_sign_encrypt (ctx, signer, rset, force_trust);              err = gpg_clip_sign_encrypt (ctx, signer, rset, force_trust);
205              release_gpg_passphrase_cb (&pwd);              release_gpg_passphrase_cb (&pwd);
206              free (rset);              safe_free (rset);
207              free_if_alloc (signer);              free_if_alloc (signer);
208              gpgme_release (ctx);              gpgme_release (ctx);
209              if (gpgme_err_code (err) ==  GPG_ERR_BAD_PASSPHRASE)              if (gpgme_err_code (err) ==  GPG_ERR_BAD_PASSPHRASE)
210                  agent_del_cache (pwd.keyid);                  agent_del_cache (pwd.keyid);
211              if (err) {              if (err)
212                  msg_box (dlg, gpgme_strerror (err), _("Sign & Encrypt"), MB_ERR );                  msg_box (dlg, gpgme_strerror (err), _("Sign & Encrypt"), MB_ERR);
213                  return FALSE;              else {
214                    show_msg (dlg, 1500, _("GnuPG Status: Finished"));
215                    EndDialog (dlg, TRUE);
216              }              }
             show_msg (dlg, 1500, _("GnuPG Status: Finished"));  
             EndDialog (dlg, TRUE);  
217              return TRUE;              return TRUE;
218                            
219          case IDCANCEL:          case IDCANCEL:
220              EndDialog( dlg, FALSE );              EndDialog (dlg, FALSE);
221              return FALSE;              return FALSE;
222          }          }
223          break;          break;

Legend:
Removed from v.68  
changed lines
  Added in v.328

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26