mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 06:35:42 +00:00
252 lines
5.8 KiB
C++
252 lines
5.8 KiB
C++
/* vim: se cin sw=2 ts=2 et : */
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
*
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
#ifndef nsUXThemeConstants_h
|
|
#define nsUXThemeConstants_h
|
|
|
|
/*
|
|
* The following constants are used to determine how a widget is drawn using
|
|
* Windows' Theme API. For more information on theme parts and states see
|
|
* http://msdn.microsoft.com/en-us/library/bb773210(VS.85).aspx
|
|
*/
|
|
|
|
#include <vssym32.h>
|
|
#include <vsstyle.h>
|
|
|
|
#define THEME_COLOR 204
|
|
#define THEME_FONT 210
|
|
|
|
// Generic state constants
|
|
#define TS_NORMAL 1
|
|
#define TS_HOVER 2
|
|
#define TS_ACTIVE 3
|
|
#define TS_DISABLED 4
|
|
#define TS_FOCUSED 5
|
|
|
|
// These constants are reversed for the trackbar (scale) thumb
|
|
#define TKP_FOCUSED 4
|
|
#define TKP_DISABLED 5
|
|
|
|
// Toolbarbutton constants
|
|
#define TB_CHECKED 5
|
|
#define TB_HOVER_CHECKED 6
|
|
|
|
// Button constants
|
|
#define BP_BUTTON 1
|
|
#define BP_RADIO 2
|
|
#define BP_CHECKBOX 3
|
|
#define BP_GROUPBOX 4
|
|
|
|
// Textfield constants
|
|
/* This is the EP_EDITTEXT part */
|
|
#define TFP_TEXTFIELD 1
|
|
#define TFP_EDITBORDER_NOSCROLL 6
|
|
#define TFS_READONLY 6
|
|
|
|
/* These are the state constants for the EDITBORDER parts */
|
|
#define TFS_EDITBORDER_NORMAL 1
|
|
#define TFS_EDITBORDER_HOVER 2
|
|
#define TFS_EDITBORDER_FOCUSED 3
|
|
#define TFS_EDITBORDER_DISABLED 4
|
|
|
|
// Treeview/listbox constants
|
|
#define TREEVIEW_BODY 1
|
|
|
|
// Scrollbar constants
|
|
#define SP_BUTTON 1
|
|
#define SP_THUMBHOR 2
|
|
#define SP_THUMBVERT 3
|
|
#define SP_TRACKSTARTHOR 4
|
|
#define SP_TRACKENDHOR 5
|
|
#define SP_TRACKSTARTVERT 6
|
|
#define SP_TRACKENDVERT 7
|
|
#define SP_GRIPPERHOR 8
|
|
#define SP_GRIPPERVERT 9
|
|
|
|
// Vista only; implict hover state.
|
|
// BASE + 0 = UP, + 1 = DOWN, etc.
|
|
#define SP_BUTTON_IMPLICIT_HOVER_BASE 17
|
|
|
|
// Scale constants
|
|
#define TKP_TRACK 1
|
|
#define TKP_TRACKVERT 2
|
|
#define TKP_THUMB 3
|
|
#define TKP_THUMBBOTTOM 4
|
|
#define TKP_THUMBTOP 5
|
|
#define TKP_THUMBVERT 6
|
|
#define TKP_THUMBLEFT 7
|
|
#define TKP_THUMBRIGHT 8
|
|
|
|
// Track state contstants
|
|
#define TRS_NORMAL 1
|
|
|
|
// Track vertical state constants
|
|
#define TRVS_NORMAL 1
|
|
|
|
// Spin constants
|
|
#define SPNP_UP 1
|
|
#define SPNP_DOWN 2
|
|
|
|
// Tab constants
|
|
#define TABP_TAB 4
|
|
#define TABP_TAB_SELECTED 5
|
|
#define TABP_PANELS 9
|
|
#define TABP_PANEL 10
|
|
|
|
// Tooltip constants
|
|
#define TTP_STANDARD 1
|
|
|
|
// Dropdown constants
|
|
#define CBP_DROPMARKER 1
|
|
#define CBP_DROPBORDER 4
|
|
/* This is actually the 'READONLY' style */
|
|
#define CBP_DROPFRAME 5
|
|
#define CBP_DROPMARKER_VISTA 6
|
|
|
|
// Menu Constants
|
|
#define MENU_BARBACKGROUND 7
|
|
#define MENU_BARITEM 8
|
|
#define MENU_POPUPBACKGROUND 9
|
|
#define MENU_POPUPBORDERS 10
|
|
#define MENU_POPUPCHECK 11
|
|
#define MENU_POPUPCHECKBACKGROUND 12
|
|
#define MENU_POPUPGUTTER 13
|
|
#define MENU_POPUPITEM 14
|
|
#define MENU_POPUPSEPARATOR 15
|
|
#define MENU_POPUPSUBMENU 16
|
|
#define MENU_SYSTEMCLOSE 17
|
|
#define MENU_SYSTEMMAXIMIZE 18
|
|
#define MENU_SYSTEMMINIMIZE 19
|
|
#define MENU_SYSTEMRESTORE 20
|
|
|
|
#define MB_ACTIVE 1
|
|
#define MB_INACTIVE 2
|
|
|
|
#define MS_NORMAL 1
|
|
#define MS_SELECTED 2
|
|
#define MS_DEMOTED 3
|
|
|
|
#define MBI_NORMAL 1
|
|
#define MBI_HOT 2
|
|
#define MBI_PUSHED 3
|
|
#define MBI_DISABLED 4
|
|
#define MBI_DISABLEDHOT 5
|
|
#define MBI_DISABLEDPUSHED 6
|
|
|
|
#define MC_CHECKMARKNORMAL 1
|
|
#define MC_CHECKMARKDISABLED 2
|
|
#define MC_BULLETNORMAL 3
|
|
#define MC_BULLETDISABLED 4
|
|
|
|
#define MCB_DISABLED 1
|
|
#define MCB_NORMAL 2
|
|
#define MCB_BITMAP 3
|
|
|
|
#define MPI_NORMAL 1
|
|
#define MPI_HOT 2
|
|
#define MPI_DISABLED 3
|
|
#define MPI_DISABLEDHOT 4
|
|
|
|
#define MSM_NORMAL 1
|
|
#define MSM_DISABLED 2
|
|
|
|
// Rebar constants
|
|
#define RP_BAND 3
|
|
#define RP_BACKGROUND 6
|
|
|
|
// Constants only found in new (98+, 2K+, XP+, etc.) Windows.
|
|
#ifdef DFCS_HOT
|
|
#undef DFCS_HOT
|
|
#endif
|
|
#define DFCS_HOT 0x00001000
|
|
|
|
#ifdef COLOR_MENUHILIGHT
|
|
#undef COLOR_MENUHILIGHT
|
|
#endif
|
|
#define COLOR_MENUHILIGHT 29
|
|
|
|
#ifdef SPI_GETFLATMENU
|
|
#undef SPI_GETFLATMENU
|
|
#endif
|
|
#define SPI_GETFLATMENU 0x1022
|
|
#ifndef SPI_GETMENUSHOWDELAY
|
|
#define SPI_GETMENUSHOWDELAY 106
|
|
#endif //SPI_GETMENUSHOWDELAY
|
|
#ifndef WS_EX_LAYOUTRTL
|
|
#define WS_EX_LAYOUTRTL 0x00400000L // Right to left mirroring
|
|
#endif
|
|
|
|
|
|
// Our extra constants for passing a little bit more info to the renderer.
|
|
#define DFCS_RTL 0x00010000
|
|
|
|
// Toolbar separator dimension which can't be gotten from Windows
|
|
#define TB_SEPARATOR_HEIGHT 2
|
|
|
|
namespace mozilla {
|
|
namespace widget {
|
|
namespace themeconst {
|
|
|
|
// Pulled from sdk/include/vsstyle.h
|
|
enum {
|
|
WP_CAPTION = 1,
|
|
WP_SMALLCAPTION = 2,
|
|
WP_MINCAPTION = 3,
|
|
WP_SMALLMINCAPTION = 4,
|
|
WP_MAXCAPTION = 5,
|
|
WP_SMALLMAXCAPTION = 6,
|
|
WP_FRAMELEFT = 7,
|
|
WP_FRAMERIGHT = 8,
|
|
WP_FRAMEBOTTOM = 9,
|
|
WP_SMALLFRAMELEFT = 10,
|
|
WP_SMALLFRAMERIGHT = 11,
|
|
WP_SMALLFRAMEBOTTOM = 12,
|
|
WP_SYSBUTTON = 13,
|
|
WP_MDISYSBUTTON = 14,
|
|
WP_MINBUTTON = 15,
|
|
WP_MDIMINBUTTON = 16,
|
|
WP_MAXBUTTON = 17,
|
|
WP_CLOSEBUTTON = 18,
|
|
WP_SMALLCLOSEBUTTON = 19,
|
|
WP_MDICLOSEBUTTON = 20,
|
|
WP_RESTOREBUTTON = 21,
|
|
WP_MDIRESTOREBUTTON = 22,
|
|
WP_HELPBUTTON = 23,
|
|
WP_MDIHELPBUTTON = 24,
|
|
WP_HORZSCROLL = 25,
|
|
WP_HORZTHUMB = 26,
|
|
WP_VERTSCROLL = 27,
|
|
WP_VERTTHUMB = 28,
|
|
WP_DIALOG = 29,
|
|
WP_CAPTIONSIZINGTEMPLATE = 30,
|
|
WP_SMALLCAPTIONSIZINGTEMPLATE = 31,
|
|
WP_FRAMELEFTSIZINGTEMPLATE = 32,
|
|
WP_SMALLFRAMELEFTSIZINGTEMPLATE = 33,
|
|
WP_FRAMERIGHTSIZINGTEMPLATE = 34,
|
|
WP_SMALLFRAMERIGHTSIZINGTEMPLATE = 35,
|
|
WP_FRAMEBOTTOMSIZINGTEMPLATE = 36,
|
|
WP_SMALLFRAMEBOTTOMSIZINGTEMPLATE = 37,
|
|
WP_FRAME = 38
|
|
};
|
|
|
|
enum FRAMESTATES {
|
|
FS_ACTIVE = 1,
|
|
FS_INACTIVE = 2
|
|
};
|
|
|
|
enum {
|
|
BS_NORMAL = 1,
|
|
BS_HOT = 2,
|
|
BS_PUSHED = 3,
|
|
BS_DISABLED = 4,
|
|
BS_INACTIVE = 5 /* undocumented, inactive caption button */
|
|
};
|
|
|
|
}}} // mozilla::widget::themeconst
|
|
|
|
#endif
|