/[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 260 by twoaday, Wed Aug 16 10:01:30 2006 UTC revision 451 by twoaday, Sat May 5 14:06:10 2012 UTC
# Line 1  Line 1 
1  /* wptSignEncDlg.cpp - Sign & encrypt dialog  /* wptSignEncDlg.cpp - Sign & encrypt dialog
2   *      Copyright (C) 2000-2006 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>
# Line 63  gpg_clip_sign_encrypt (gpgme_ctx_t ctx, Line 59  gpg_clip_sign_encrypt (gpgme_ctx_t ctx,
59      gpgme_set_armor (ctx, 1);      gpgme_set_armor (ctx, 1);
60      gpgme_set_textmode (ctx, 1);      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;
# Line 111  clip_signenc_dlg_proc (HWND dlg, UINT ms Line 108  clip_signenc_dlg_proc (HWND dlg, UINT ms
108          SetWindowText (dlg, _("Sign & Encrypt"));          SetWindowText (dlg, _("Sign & Encrypt"));
109          SetDlgItemText (dlg, IDCANCEL, _("&Cancel"));          SetDlgItemText (dlg, IDCANCEL, _("&Cancel"));
110          kc = keycache_get_ctx (KEYCACHE_PUB);          kc = keycache_get_ctx (KEYCACHE_PUB);
111          lv = keylist_load (GetDlgItem (dlg, IDC_SIGNENC_KEYLIST),          if (!kc)
112                BUG (NULL);
113            
114            kl = keylist_load (GetDlgItem (dlg, IDC_SIGNENC_KEYLIST),
115                             kc, NULL, KEYLIST_ENCRYPT_MIN, KEY_SORT_USERID);                             kc, NULL, KEYLIST_ENCRYPT_MIN, KEY_SORT_USERID);
116          seclist_init (dlg, IDC_SIGNENC_SECLIST, KEYLIST_FLAG_SHORT, &list);          seclist_init (dlg, IDC_SIGNENC_SECLIST, KEYLIST_FLAG_SHORT, &list);
117          center_window (dlg, NULL);          center_window (dlg, NULL);
# Line 123  clip_signenc_dlg_proc (HWND dlg, UINT ms Line 123  clip_signenc_dlg_proc (HWND dlg, UINT ms
123                    
124      case WM_DESTROY:      case WM_DESTROY:
125          seclist_destroy (&list);          seclist_destroy (&list);
126          if (lv) {          if (kl) {
127              keylist_delete (lv);              keylist_delete (kl);
128              lv = NULL;              kl = NULL;
129          }          }
130          return FALSE;          return FALSE;
131                    
132      case WM_NOTIFY:      case WM_NOTIFY:
133            /* Wait until the dialog initialization is done */
134            if (kl == NULL)
135                break;
136            
137            int ret;
138            ret = keylist_listview_notify (dlg, kl->keys,
139                                           IDC_SIGNENC_KEYLIST, lparam);
140            if (ret != 0) {
141                SetWindowLong (dlg, DWL_MSGRESULT, ret);
142                return TRUE;
143            }
144            
145          NMHDR *notify;          NMHDR *notify;
146          notify = (NMHDR *)lparam;          notify = (NMHDR *)lparam;
147          if (notify && notify->code == NM_DBLCLK          if (notify && notify->code == NM_DBLCLK &&
148              && notify->idFrom == IDC_SIGNENC_KEYLIST)              notify->idFrom == IDC_SIGNENC_KEYLIST)
149              PostMessage (dlg, WM_COMMAND, MAKEWPARAM (IDOK, 0), 0);              PostMessage (dlg, WM_COMMAND, MAKEWPARAM (IDOK, 0), 0);
150          return TRUE;          
151                    if (notify && notify->code == LVN_COLUMNCLICK &&
152                notify->idFrom == IDC_SIGNENC_KEYLIST) {
153                NMLISTVIEW *p = (LPNMLISTVIEW) lparam;
154                int sortby = 0;
155    
156                switch (p->iSubItem) {
157                case  0: sortby = KEY_SORT_USERID; break;
158                case  1: sortby = KEY_SORT_KEYID; break;
159                case  2: sortby = KEY_SORT_LEN; break;
160                case  4: sortby = KEY_SORT_VALIDITY; break;
161                default: sortby = KEY_SORT_USERID; break;
162                }
163                if ((keys_sortby & ~KEYLIST_SORT_DESC) == sortby)
164                    keys_sortby ^= KEYLIST_SORT_DESC;
165                else
166                    keys_sortby = sortby;
167                keylist_sort (kl, keys_sortby);
168                return TRUE;
169            }        
170            break;
171            
172      case WM_COMMAND:      case WM_COMMAND:
173          if (HIWORD (wparam) == BN_CLICKED          if (HIWORD (wparam) == BN_CLICKED &&
174              && LOWORD (wparam) == IDC_SIGNENC_SELKEY) {              LOWORD (wparam) == IDC_SIGNENC_SELKEY) {
175              int enable = IsDlgButtonChecked (dlg, IDC_SIGNENC_SELKEY);              int enable = IsDlgButtonChecked (dlg, IDC_SIGNENC_SELKEY);
176              EnableWindow (GetDlgItem (dlg, IDC_SIGNENC_SECLIST), enable? TRUE : FALSE);              EnableWindow (GetDlgItem (dlg, IDC_SIGNENC_SECLIST), enable? TRUE : FALSE);
177                break;
178          }          }
179            
180          switch (LOWORD (wparam)) {          switch (LOWORD (wparam)) {
181          case IDOK:          case IDOK:
182              rset = keylist_get_recipients (lv, &force_trust, &n);              rset = keylist_get_recipients (kl, &force_trust, &n);
183              if (!n) {              if (!n) {
184                  msg_box (dlg, _("You must select at least one key."),                  msg_box (dlg, _("You must select at least one key."),
185                           _("Sign & Encrypt"), MB_ERR);                           _("Sign & Encrypt"), MB_ERR);

Legend:
Removed from v.260  
changed lines
  Added in v.451

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26