///
/// Copyright © 2003-2008 JetBrains s.r.o.
/// You may distribute under the terms of the GNU General Public License, as published by the Free Software Foundation, version 2 (see License.txt in the repository root folder).
///
namespace JetBrains.Interop.WinApi
{
///
/// Dialog Codes.
///
public enum DialogCodes
{
DLGC_WANTARROWS = 0x0001, /* Control wants arrow keys */
DLGC_WANTTAB = 0x0002, /* Control wants tab keys */
DLGC_WANTALLKEYS = 0x0004, /* Control wants all keys */
DLGC_WANTMESSAGE = 0x0004, /* Pass message to control */
DLGC_HASSETSEL = 0x0008, /* Understands EM_SETSEL message */
DLGC_DEFPUSHBUTTON = 0x0010, /* Default pushbutton */
DLGC_UNDEFPUSHBUTTON = 0x0020, /* Non-default pushbutton */
DLGC_RADIOBUTTON = 0x0040, /* Radio button */
DLGC_WANTCHARS = 0x0080, /* Want WM_CHAR messages */
DLGC_STATIC = 0x0100, /* Static item: don't include */
DLGC_BUTTON = 0x2000, /* Button item: can be checked */
}
}