~x2go/x2go/pinentry-x2go_master

« back to all changes in this revision

Viewing changes to w32/pinentry-w32.rc

  • Committer: Mike Gabriel
  • Date: 2012-06-13 12:55:37 UTC
  • Revision ID: git-v1:d2060291d5cc7beb92f78168e48ececfe765d552
Strip code project down to its essentials, remove a lot of unneeded cruft. / Make code tree fully build with autotools, see README file for further info.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* dialog.rc - Resource definitions
2
 
   Copyright (C) 2004 g10 Code GmbH
3
 
   
4
 
   This program is free software; you can redistribute it and/or
5
 
   modify it under the terms of the GNU General Public License as
6
 
   published by the Free Software Foundation; either version 2 of the
7
 
   License, or (at your option) any later version.
8
 
 
9
 
   This program is distributed in the hope that it will be useful, but
10
 
   WITHOUT ANY WARRANTY; without even the implied warranty of
11
 
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12
 
   General Public License for more details.
13
 
 
14
 
   You should have received a copy of the GNU General Public License
15
 
   along with this program; if not, write to the Free Software
16
 
   Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
17
 
   02111-1307, USA  */
18
 
 
19
 
 
20
 
#include <winuser.h>
21
 
#include "resource.h"
22
 
 
23
 
/* 
24
 
 * Main dialog 
25
 
 */
26
 
 
27
 
IDD_PINENT DIALOG DISCARDABLE  0, 0, 186, 125
28
 
STYLE DS_MODALFRAME | DS_SYSMODAL | WS_POPUP | WS_CAPTION | WS_SYSMENU
29
 
CAPTION "Pinentry"
30
 
FONT 8, "MS Shell Dlg"
31
 
BEGIN
32
 
    LTEXT           "", IDC_PINENT_DESC, 6, 6, 152, 40
33
 
    EDITTEXT        IDC_PINENT_TEXT, 71, 56, 107, 12, ES_PASSWORD | ES_AUTOHSCROLL
34
 
    DEFPUSHBUTTON   "O&K", IDOK, 77, 100, 50, 14
35
 
    PUSHBUTTON      "&Cancel", IDCANCEL, 132, 100, 50, 14
36
 
    LTEXT           "", IDC_PINENT_PROMPT, 6, 56, 64, 12
37
 
    LTEXT           "", IDC_PINENT_ERR, 6, 82, 170, 9
38
 
END
39
 
 
40
 
 
41