2004-03-20 11:42:30 +00:00
|
|
|
/* MS-Windows Engine (aka GTK-Wimp)
|
2003-04-15 18:31:55 +00:00
|
|
|
*
|
2004-03-20 11:42:30 +00:00
|
|
|
* Copyright (C) 2003, 2004 Raymond Penners <raymond@dotsphinx.com>
|
2003-04-15 18:31:55 +00:00
|
|
|
* Includes code adapted from redmond95 by Owen Taylor, and
|
|
|
|
* gtk-nativewin by Evan Martin
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Library General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Library General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Library General Public
|
|
|
|
* License along with this library; if not, write to the
|
|
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
* Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
|
2005-06-03 19:54:03 +00:00
|
|
|
/*
|
|
|
|
* Useful resources:
|
|
|
|
*
|
|
|
|
* http://lxr.mozilla.org/mozilla/source/gfx/src/windows/nsNativeThemeWin.cpp
|
2005-07-28 12:24:25 +00:00
|
|
|
* http://lxr.mozilla.org/seamonkey/source/widget/src/windows/nsLookAndFeel.cpp
|
2005-06-03 19:54:03 +00:00
|
|
|
* http://msdn.microsoft.com/library/default.asp?url=/library/en-us/shellcc/platform/commctls/userex/functions/drawthemebackground.asp
|
|
|
|
*/
|
|
|
|
|
2004-03-20 11:42:30 +00:00
|
|
|
#include "msw_style.h"
|
2003-08-05 19:34:17 +00:00
|
|
|
#include "xp_theme.h"
|
2003-04-15 18:31:55 +00:00
|
|
|
|
|
|
|
#include <windows.h>
|
|
|
|
#include <math.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
|
2004-08-30 20:58:57 +00:00
|
|
|
#include "gtk/gtk.h"
|
|
|
|
#include "gtk/gtk.h"
|
2005-06-03 19:54:03 +00:00
|
|
|
/* #include <gdk/gdkwin32.h> */
|
2004-08-30 20:58:57 +00:00
|
|
|
#include "gdk/win32/gdkwin32.h"
|
|
|
|
|
|
|
|
|
2003-04-15 18:31:55 +00:00
|
|
|
/* Default values, not normally used
|
|
|
|
*/
|
2003-09-15 14:02:23 +00:00
|
|
|
static const GtkRequisition default_option_indicator_size = { 9, 8 };
|
|
|
|
static const GtkBorder default_option_indicator_spacing = { 7, 5, 2, 2 };
|
2003-04-15 18:31:55 +00:00
|
|
|
|
|
|
|
static GtkStyleClass *parent_class;
|
|
|
|
|
|
|
|
typedef enum {
|
|
|
|
CHECK_AA,
|
|
|
|
CHECK_BASE,
|
|
|
|
CHECK_BLACK,
|
|
|
|
CHECK_DARK,
|
|
|
|
CHECK_LIGHT,
|
|
|
|
CHECK_MID,
|
|
|
|
CHECK_TEXT,
|
|
|
|
RADIO_BASE,
|
|
|
|
RADIO_BLACK,
|
|
|
|
RADIO_DARK,
|
|
|
|
RADIO_LIGHT,
|
|
|
|
RADIO_MID,
|
|
|
|
RADIO_TEXT
|
|
|
|
} Part;
|
|
|
|
|
|
|
|
#define PART_SIZE 13
|
|
|
|
|
2005-07-28 12:24:25 +00:00
|
|
|
static const guint8 check_aa_bits[] = {
|
2003-04-15 18:31:55 +00:00
|
|
|
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
|
|
|
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00};
|
2005-07-28 12:24:25 +00:00
|
|
|
static const guint8 check_base_bits[] = {
|
2003-04-15 18:31:55 +00:00
|
|
|
0x00,0x00,0x00,0x00,0xfc,0x07,0xfc,0x07,0xfc,0x07,0xfc,0x07,0xfc,0x07,0xfc,
|
|
|
|
0x07,0xfc,0x07,0xfc,0x07,0xfc,0x07,0x00,0x00,0x00,0x00};
|
2005-07-28 12:24:25 +00:00
|
|
|
static const guint8 check_black_bits[] = {
|
2003-04-15 18:31:55 +00:00
|
|
|
0x00,0x00,0xfe,0x0f,0x02,0x00,0x02,0x00,0x02,0x00,0x02,0x00,0x02,0x00,0x02,
|
|
|
|
0x00,0x02,0x00,0x02,0x00,0x02,0x00,0x02,0x00,0x00,0x00};
|
2005-07-28 12:24:25 +00:00
|
|
|
static const guint8 check_dark_bits[] = {
|
2003-04-15 18:31:55 +00:00
|
|
|
0xff,0x1f,0x01,0x00,0x01,0x00,0x01,0x00,0x01,0x00,0x01,0x00,0x01,0x00,0x01,
|
|
|
|
0x00,0x01,0x00,0x01,0x00,0x01,0x00,0x01,0x00,0x01,0x00};
|
2005-07-28 12:24:25 +00:00
|
|
|
static const guint8 check_light_bits[] = {
|
2003-04-15 18:31:55 +00:00
|
|
|
0x00,0x00,0x00,0x10,0x00,0x10,0x00,0x10,0x00,0x10,0x00,0x10,0x00,0x10,0x00,
|
|
|
|
0x10,0x00,0x10,0x00,0x10,0x00,0x10,0x00,0x10,0xfe,0x1f};
|
2005-07-28 12:24:25 +00:00
|
|
|
static const guint8 check_mid_bits[] = {
|
2003-04-15 18:31:55 +00:00
|
|
|
0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x08,0x00,0x08,0x00,0x08,0x00,0x08,0x00,
|
|
|
|
0x08,0x00,0x08,0x00,0x08,0x00,0x08,0xfc,0x0f,0x00,0x00};
|
2005-07-28 12:24:25 +00:00
|
|
|
static const guint8 check_text_bits[] = {
|
2003-04-15 18:31:55 +00:00
|
|
|
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x03,0x88,0x03,0xd8,0x01,0xf8,
|
|
|
|
0x00,0x70,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00};
|
2005-07-28 12:24:25 +00:00
|
|
|
static const guint8 radio_base_bits[] = {
|
2003-04-15 18:31:55 +00:00
|
|
|
0x00,0x00,0x00,0x00,0xf0,0x01,0xf8,0x03,0xfc,0x07,0xfc,0x07,0xfc,0x07,0xfc,
|
|
|
|
0x07,0xfc,0x07,0xf8,0x03,0xf0,0x01,0x00,0x00,0x00,0x00};
|
2005-07-28 12:24:25 +00:00
|
|
|
static const guint8 radio_black_bits[] = {
|
2003-04-15 18:31:55 +00:00
|
|
|
0x00,0x00,0xf0,0x01,0x0c,0x02,0x04,0x00,0x02,0x00,0x02,0x00,0x02,0x00,0x02,
|
|
|
|
0x00,0x02,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00};
|
2005-07-28 12:24:25 +00:00
|
|
|
static const guint8 radio_dark_bits[] = {
|
2003-04-15 18:31:55 +00:00
|
|
|
0xf0,0x01,0x0c,0x06,0x02,0x00,0x02,0x00,0x01,0x00,0x01,0x00,0x01,0x00,0x01,
|
|
|
|
0x00,0x01,0x00,0x02,0x00,0x02,0x00,0x00,0x00,0x00,0x00};
|
2005-07-28 12:24:25 +00:00
|
|
|
static const guint8 radio_light_bits[] = {
|
2003-04-15 18:31:55 +00:00
|
|
|
0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x08,0x00,0x10,0x00,0x10,0x00,0x10,0x00,
|
|
|
|
0x10,0x00,0x10,0x00,0x08,0x00,0x08,0x0c,0x06,0xf0,0x01};
|
2005-07-28 12:24:25 +00:00
|
|
|
static const guint8 radio_mid_bits[] = {
|
2003-04-15 18:31:55 +00:00
|
|
|
0x00,0x00,0x00,0x00,0x00,0x04,0x00,0x04,0x00,0x08,0x00,0x08,0x00,0x08,0x00,
|
|
|
|
0x08,0x00,0x08,0x00,0x04,0x0c,0x06,0xf0,0x01,0x00,0x00};
|
2005-07-28 12:24:25 +00:00
|
|
|
static const guint8 radio_text_bits[] = {
|
2003-04-15 18:31:55 +00:00
|
|
|
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xe0,0x00,0xf0,0x01,0xf0,0x01,0xf0,
|
|
|
|
0x01,0xe0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00};
|
|
|
|
|
|
|
|
static struct {
|
2005-07-28 12:24:25 +00:00
|
|
|
const guint8 *bits;
|
2003-09-09 14:18:43 +00:00
|
|
|
GdkBitmap *bmap;
|
2003-04-15 18:31:55 +00:00
|
|
|
} parts[] = {
|
|
|
|
{ check_aa_bits, NULL },
|
|
|
|
{ check_base_bits, NULL },
|
|
|
|
{ check_black_bits, NULL },
|
|
|
|
{ check_dark_bits, NULL },
|
|
|
|
{ check_light_bits, NULL },
|
|
|
|
{ check_mid_bits, NULL },
|
|
|
|
{ check_text_bits, NULL },
|
|
|
|
{ radio_base_bits, NULL },
|
|
|
|
{ radio_black_bits, NULL },
|
|
|
|
{ radio_dark_bits, NULL },
|
|
|
|
{ radio_light_bits, NULL },
|
|
|
|
{ radio_mid_bits, NULL },
|
|
|
|
{ radio_text_bits, NULL }
|
|
|
|
};
|
|
|
|
|
|
|
|
static gboolean
|
2003-10-21 18:51:29 +00:00
|
|
|
get_system_font(XpThemeClass klazz, XpThemeFont type, LOGFONT *out_lf)
|
2003-04-15 18:31:55 +00:00
|
|
|
{
|
2003-10-21 18:51:29 +00:00
|
|
|
#if 0
|
2005-07-28 12:24:25 +00:00
|
|
|
/* TODO: this causes crashes later because the font name is in UCS2, and the pango fns don't deal with that gracefully */
|
2004-06-07 02:11:50 +00:00
|
|
|
if (xp_theme_get_system_font(klazz, type, out_lf))
|
|
|
|
return TRUE;
|
|
|
|
else
|
2003-10-21 18:51:29 +00:00
|
|
|
#endif
|
|
|
|
{
|
|
|
|
NONCLIENTMETRICS ncm;
|
|
|
|
ncm.cbSize = sizeof(NONCLIENTMETRICS);
|
|
|
|
|
|
|
|
if (SystemParametersInfo(SPI_GETNONCLIENTMETRICS,
|
|
|
|
sizeof(NONCLIENTMETRICS), &ncm, 0))
|
|
|
|
{
|
|
|
|
if (type == XP_THEME_FONT_CAPTION)
|
|
|
|
*out_lf = ncm.lfCaptionFont;
|
|
|
|
else if (type == XP_THEME_FONT_MENU)
|
|
|
|
*out_lf = ncm.lfMenuFont;
|
|
|
|
else if (type == XP_THEME_FONT_STATUS)
|
|
|
|
*out_lf = ncm.lfStatusFont;
|
|
|
|
else
|
|
|
|
*out_lf = ncm.lfMessageFont;
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
}
|
2003-09-15 14:02:23 +00:00
|
|
|
return FALSE;
|
2003-04-15 18:31:55 +00:00
|
|
|
}
|
|
|
|
|
2005-06-03 19:54:03 +00:00
|
|
|
/***************************** BEGIN STOLEN FROM PANGO *****************************/
|
2004-02-25 22:38:58 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
This code is stolen from Pango 1.4. It attempts to address the following problems:
|
|
|
|
|
|
|
|
http://bugzilla.gnome.org/show_bug.cgi?id=135098
|
|
|
|
http://sourceforge.net/tracker/index.php?func=detail&aid=895762&group_id=76416&atid=547655
|
|
|
|
|
|
|
|
As Owen suggested in bug 135098, once Pango 1.6 is released, we need to get rid of this code.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define PING(printlist)
|
|
|
|
|
|
|
|
/* TrueType defines: */
|
|
|
|
|
|
|
|
#define MAKE_TT_TABLE_NAME(c1, c2, c3, c4) \
|
|
|
|
(((guint32)c4) << 24 | ((guint32)c3) << 16 | ((guint32)c2) << 8 | ((guint32)c1))
|
|
|
|
|
|
|
|
#define CMAP (MAKE_TT_TABLE_NAME('c','m','a','p'))
|
|
|
|
#define CMAP_HEADER_SIZE 4
|
|
|
|
|
|
|
|
#define NAME (MAKE_TT_TABLE_NAME('n','a','m','e'))
|
|
|
|
#define NAME_HEADER_SIZE 6
|
|
|
|
|
|
|
|
#define ENCODING_TABLE_SIZE 8
|
|
|
|
|
|
|
|
#define APPLE_UNICODE_PLATFORM_ID 0
|
|
|
|
#define MACINTOSH_PLATFORM_ID 1
|
|
|
|
#define ISO_PLATFORM_ID 2
|
|
|
|
#define MICROSOFT_PLATFORM_ID 3
|
|
|
|
|
|
|
|
#define SYMBOL_ENCODING_ID 0
|
|
|
|
#define UNICODE_ENCODING_ID 1
|
|
|
|
#define UCS4_ENCODING_ID 10
|
|
|
|
|
|
|
|
struct name_header
|
|
|
|
{
|
|
|
|
guint16 format_selector;
|
|
|
|
guint16 num_records;
|
|
|
|
guint16 string_storage_offset;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct name_record
|
|
|
|
{
|
|
|
|
guint16 platform_id;
|
|
|
|
guint16 encoding_id;
|
|
|
|
guint16 language_id;
|
|
|
|
guint16 name_id;
|
|
|
|
guint16 string_length;
|
|
|
|
guint16 string_offset;
|
|
|
|
};
|
|
|
|
|
2005-06-03 19:54:03 +00:00
|
|
|
static gboolean
|
2004-02-25 22:38:58 +00:00
|
|
|
pango_win32_get_name_header (HDC hdc,
|
|
|
|
struct name_header *header)
|
|
|
|
{
|
|
|
|
if (GetFontData (hdc, NAME, 0, header, sizeof (*header)) != sizeof (*header))
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
header->num_records = GUINT16_FROM_BE (header->num_records);
|
|
|
|
header->string_storage_offset = GUINT16_FROM_BE (header->string_storage_offset);
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2005-06-03 19:54:03 +00:00
|
|
|
static gboolean
|
2004-02-25 22:38:58 +00:00
|
|
|
pango_win32_get_name_record (HDC hdc,
|
|
|
|
gint i,
|
|
|
|
struct name_record *record)
|
|
|
|
{
|
|
|
|
if (GetFontData (hdc, NAME, 6 + i * sizeof (*record),
|
|
|
|
record, sizeof (*record)) != sizeof (*record))
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
record->platform_id = GUINT16_FROM_BE (record->platform_id);
|
|
|
|
record->encoding_id = GUINT16_FROM_BE (record->encoding_id);
|
|
|
|
record->language_id = GUINT16_FROM_BE (record->language_id);
|
|
|
|
record->name_id = GUINT16_FROM_BE (record->name_id);
|
|
|
|
record->string_length = GUINT16_FROM_BE (record->string_length);
|
|
|
|
record->string_offset = GUINT16_FROM_BE (record->string_offset);
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gchar *
|
|
|
|
get_family_name (LOGFONT *lfp, HDC pango_win32_hdc)
|
|
|
|
{
|
|
|
|
HFONT hfont;
|
|
|
|
HFONT oldhfont;
|
|
|
|
|
|
|
|
struct name_header header;
|
|
|
|
struct name_record record;
|
|
|
|
|
|
|
|
gint unicode_ix = -1, mac_ix = -1, microsoft_ix = -1;
|
|
|
|
gint name_ix;
|
|
|
|
gchar *codeset;
|
|
|
|
|
|
|
|
gchar *string = NULL;
|
|
|
|
gchar *name;
|
|
|
|
|
2005-07-28 12:24:25 +00:00
|
|
|
size_t i, l, nbytes;
|
2004-02-25 22:38:58 +00:00
|
|
|
|
|
|
|
/* If lfFaceName is ASCII, assume it is the common (English) name
|
|
|
|
* for the font. Is this valid? Do some TrueType fonts have
|
|
|
|
* different names in French, German, etc, and does the system
|
|
|
|
* return these if the locale is set to use French, German, etc?
|
|
|
|
*/
|
|
|
|
l = strlen (lfp->lfFaceName);
|
|
|
|
for (i = 0; i < l; i++)
|
|
|
|
if (lfp->lfFaceName[i] < ' ' || lfp->lfFaceName[i] > '~')
|
|
|
|
break;
|
|
|
|
|
|
|
|
if (i == l)
|
|
|
|
return g_strdup (lfp->lfFaceName);
|
|
|
|
|
|
|
|
if ((hfont = CreateFontIndirect (lfp)) == NULL)
|
|
|
|
goto fail0;
|
|
|
|
|
2005-07-28 12:24:25 +00:00
|
|
|
if ((oldhfont = (HFONT)SelectObject (pango_win32_hdc, hfont)) == NULL)
|
2004-02-25 22:38:58 +00:00
|
|
|
goto fail1;
|
|
|
|
|
|
|
|
if (!pango_win32_get_name_header (pango_win32_hdc, &header))
|
|
|
|
goto fail2;
|
|
|
|
|
|
|
|
PING (("%d name records", header.num_records));
|
|
|
|
|
|
|
|
for (i = 0; i < header.num_records; i++)
|
|
|
|
{
|
|
|
|
if (!pango_win32_get_name_record (pango_win32_hdc, i, &record))
|
|
|
|
goto fail2;
|
|
|
|
|
|
|
|
if ((record.name_id != 1 && record.name_id != 16) || record.string_length <= 0)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
PING(("platform:%d encoding:%d language:%04x name_id:%d",
|
|
|
|
record.platform_id, record.encoding_id, record.language_id, record.name_id));
|
|
|
|
|
|
|
|
if (record.platform_id == APPLE_UNICODE_PLATFORM_ID ||
|
|
|
|
record.platform_id == ISO_PLATFORM_ID)
|
|
|
|
unicode_ix = i;
|
|
|
|
else if (record.platform_id == MACINTOSH_PLATFORM_ID &&
|
|
|
|
record.encoding_id == 0 && /* Roman */
|
|
|
|
record.language_id == 0) /* English */
|
|
|
|
mac_ix = i;
|
|
|
|
else if (record.platform_id == MICROSOFT_PLATFORM_ID)
|
|
|
|
if ((microsoft_ix == -1 ||
|
|
|
|
PRIMARYLANGID (record.language_id) == LANG_ENGLISH) &&
|
|
|
|
(record.encoding_id == SYMBOL_ENCODING_ID ||
|
|
|
|
record.encoding_id == UNICODE_ENCODING_ID ||
|
|
|
|
record.encoding_id == UCS4_ENCODING_ID))
|
|
|
|
microsoft_ix = i;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (microsoft_ix >= 0)
|
|
|
|
name_ix = microsoft_ix;
|
|
|
|
else if (mac_ix >= 0)
|
|
|
|
name_ix = mac_ix;
|
|
|
|
else if (unicode_ix >= 0)
|
|
|
|
name_ix = unicode_ix;
|
|
|
|
else
|
|
|
|
goto fail2;
|
|
|
|
|
|
|
|
if (!pango_win32_get_name_record (pango_win32_hdc, name_ix, &record))
|
|
|
|
goto fail2;
|
|
|
|
|
|
|
|
string = g_malloc (record.string_length + 1);
|
|
|
|
if (GetFontData (pango_win32_hdc, NAME,
|
|
|
|
header.string_storage_offset + record.string_offset,
|
|
|
|
string, record.string_length) != record.string_length)
|
|
|
|
goto fail2;
|
|
|
|
|
|
|
|
string[record.string_length] = '\0';
|
|
|
|
|
|
|
|
if (name_ix == microsoft_ix)
|
|
|
|
if (record.encoding_id == SYMBOL_ENCODING_ID ||
|
|
|
|
record.encoding_id == UNICODE_ENCODING_ID)
|
|
|
|
codeset = "UTF-16BE";
|
|
|
|
else
|
|
|
|
codeset = "UCS-4BE";
|
|
|
|
else if (name_ix == mac_ix)
|
|
|
|
codeset = "MacRoman";
|
|
|
|
else /* name_ix == unicode_ix */
|
|
|
|
codeset = "UCS-4BE";
|
|
|
|
|
|
|
|
name = g_convert (string, record.string_length, "UTF-8", codeset, NULL, &nbytes, NULL);
|
|
|
|
if (name == NULL)
|
|
|
|
goto fail2;
|
|
|
|
g_free (string);
|
|
|
|
|
|
|
|
PING(("%s", name));
|
|
|
|
|
|
|
|
SelectObject (pango_win32_hdc, oldhfont);
|
|
|
|
DeleteObject (hfont);
|
|
|
|
|
|
|
|
return name;
|
|
|
|
|
|
|
|
fail2:
|
|
|
|
g_free (string);
|
|
|
|
SelectObject (pango_win32_hdc, oldhfont);
|
|
|
|
|
|
|
|
fail1:
|
|
|
|
DeleteObject (hfont);
|
|
|
|
|
|
|
|
fail0:
|
|
|
|
return g_locale_to_utf8 (lfp->lfFaceName, -1, NULL, NULL, NULL);
|
|
|
|
}
|
|
|
|
|
2005-06-03 19:54:03 +00:00
|
|
|
/***************************** END STOLEN FROM PANGO *****************************/
|
2004-02-25 22:38:58 +00:00
|
|
|
|
2003-08-29 22:10:07 +00:00
|
|
|
static char *
|
2003-11-14 17:51:31 +00:00
|
|
|
sys_font_to_pango_font (XpThemeClass klazz, XpThemeFont type, char * buf, size_t bufsiz)
|
2003-04-15 18:31:55 +00:00
|
|
|
{
|
2003-10-03 13:51:41 +00:00
|
|
|
HDC hDC;
|
|
|
|
HWND hwnd;
|
2003-04-15 18:31:55 +00:00
|
|
|
LOGFONT lf;
|
2003-08-29 22:10:07 +00:00
|
|
|
int pt_size;
|
2003-09-02 22:09:49 +00:00
|
|
|
const char * weight;
|
|
|
|
const char * style;
|
2004-02-25 22:38:58 +00:00
|
|
|
char * font;
|
2003-09-02 22:09:49 +00:00
|
|
|
|
2003-10-21 18:51:29 +00:00
|
|
|
if (get_system_font(klazz, type, &lf))
|
2003-04-15 18:31:55 +00:00
|
|
|
{
|
2003-09-08 13:53:25 +00:00
|
|
|
switch (lf.lfWeight) {
|
|
|
|
case FW_THIN:
|
|
|
|
case FW_EXTRALIGHT:
|
2003-09-09 15:07:33 +00:00
|
|
|
weight = "Ultra-Light";
|
2003-09-08 13:53:25 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case FW_LIGHT:
|
2003-09-09 15:07:33 +00:00
|
|
|
weight = "Light";
|
2003-09-08 13:53:25 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case FW_BOLD:
|
2003-09-09 15:07:33 +00:00
|
|
|
weight = "Bold";
|
|
|
|
break;
|
|
|
|
|
|
|
|
case FW_SEMIBOLD:
|
|
|
|
weight = "Semi-Bold";
|
2003-09-08 13:53:25 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case FW_ULTRABOLD:
|
2003-09-09 15:07:33 +00:00
|
|
|
weight = "Ultra-Bold";
|
2003-09-08 13:53:25 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case FW_HEAVY:
|
2003-09-09 15:07:33 +00:00
|
|
|
weight = "Heavy";
|
|
|
|
break;
|
2003-09-08 13:53:25 +00:00
|
|
|
|
|
|
|
default:
|
2003-09-09 15:07:33 +00:00
|
|
|
weight = "";
|
2003-09-08 13:53:25 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (lf.lfItalic)
|
2003-09-09 15:07:33 +00:00
|
|
|
style="Italic";
|
2003-09-08 13:53:25 +00:00
|
|
|
else
|
2003-09-09 15:07:33 +00:00
|
|
|
style="";
|
2003-09-02 22:09:49 +00:00
|
|
|
|
2003-10-03 13:51:41 +00:00
|
|
|
hwnd = GetDesktopWindow();
|
|
|
|
hDC = GetDC(hwnd);
|
|
|
|
if (hDC) {
|
|
|
|
pt_size = -MulDiv(lf.lfHeight, 72,
|
|
|
|
GetDeviceCaps(hDC,LOGPIXELSY));
|
|
|
|
ReleaseDC(hwnd, hDC);
|
|
|
|
} else
|
|
|
|
pt_size = 10;
|
2003-08-29 22:10:07 +00:00
|
|
|
|
2004-02-25 22:38:58 +00:00
|
|
|
font = get_family_name(&lf, hDC);
|
|
|
|
g_snprintf(buf, bufsiz, "%s %s %s %d", font, style, weight, pt_size);
|
|
|
|
g_free(font);
|
2003-10-03 13:51:41 +00:00
|
|
|
|
|
|
|
return buf;
|
|
|
|
}
|
2003-08-29 22:10:07 +00:00
|
|
|
|
2003-09-08 13:53:25 +00:00
|
|
|
return NULL;
|
2003-08-29 22:10:07 +00:00
|
|
|
}
|
|
|
|
|
2003-09-25 15:04:16 +00:00
|
|
|
/* missing from ms's header files */
|
|
|
|
#ifndef SPI_GETMENUSHOWDELAY
|
|
|
|
#define SPI_GETMENUSHOWDELAY 106
|
|
|
|
#endif
|
|
|
|
|
2003-11-14 17:51:31 +00:00
|
|
|
/* I don't know the proper XP theme class for things like
|
|
|
|
HIGHLIGHTTEXT, so we'll just define it to be "BUTTON"
|
|
|
|
for now */
|
|
|
|
#define XP_THEME_CLASS_TEXT XP_THEME_CLASS_BUTTON
|
2003-10-21 18:51:29 +00:00
|
|
|
|
2003-10-03 18:17:39 +00:00
|
|
|
static void
|
2004-06-07 02:11:50 +00:00
|
|
|
setup_menu_settings (GtkSettings * settings)
|
2003-10-03 18:17:39 +00:00
|
|
|
{
|
2003-10-06 16:38:53 +00:00
|
|
|
int menu_delay;
|
|
|
|
gboolean win95 = FALSE;
|
|
|
|
OSVERSIONINFOEX osvi;
|
2004-06-07 02:11:50 +00:00
|
|
|
GObjectClass * klazz = G_OBJECT_GET_CLASS(G_OBJECT(settings));
|
2003-10-21 18:51:29 +00:00
|
|
|
|
2003-10-06 16:38:53 +00:00
|
|
|
ZeroMemory(&osvi, sizeof(OSVERSIONINFOEX));
|
|
|
|
osvi.dwOSVersionInfoSize = sizeof(OSVERSIONINFOEX);
|
2003-10-21 18:51:29 +00:00
|
|
|
|
2003-10-06 16:38:53 +00:00
|
|
|
if (!GetVersionEx ( (OSVERSIONINFO *) &osvi))
|
|
|
|
win95 = TRUE; /* assume the worst */
|
2003-10-21 18:51:29 +00:00
|
|
|
|
2003-10-06 16:38:53 +00:00
|
|
|
if (osvi.dwPlatformId == VER_PLATFORM_WIN32_WINDOWS)
|
|
|
|
if (osvi.dwMajorVersion == 4 && osvi.dwMinorVersion == 0)
|
|
|
|
win95 = TRUE;
|
2003-10-21 18:51:29 +00:00
|
|
|
|
2003-10-06 16:38:53 +00:00
|
|
|
if (!win95) {
|
|
|
|
if (SystemParametersInfo (SPI_GETMENUSHOWDELAY, 0, &menu_delay, 0)) {
|
|
|
|
if (klazz) {
|
|
|
|
if (g_object_class_find_property (klazz, "gtk-menu-bar-popup-delay")) {
|
2004-11-19 23:30:47 +00:00
|
|
|
g_object_set (settings, "gtk-menu-bar-popup-delay", 0, NULL);
|
2003-10-06 16:38:53 +00:00
|
|
|
}
|
|
|
|
if (g_object_class_find_property (klazz, "gtk-menu-popup-delay")) {
|
2004-11-19 23:30:47 +00:00
|
|
|
g_object_set (settings, "gtk-menu-popup-delay", menu_delay, NULL);
|
2003-10-06 16:38:53 +00:00
|
|
|
}
|
|
|
|
if (g_object_class_find_property (klazz, "gtk-menu-popdown-delay")) {
|
2004-11-19 23:30:47 +00:00
|
|
|
g_object_set (settings, "gtk-menu-popdown-delay", menu_delay, NULL);
|
2003-10-03 18:17:39 +00:00
|
|
|
}
|
2003-10-06 16:38:53 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2003-10-03 18:17:39 +00:00
|
|
|
}
|
|
|
|
|
2003-10-06 16:38:53 +00:00
|
|
|
void
|
2004-03-20 11:42:30 +00:00
|
|
|
msw_style_setup_system_settings (void)
|
2003-09-15 14:02:23 +00:00
|
|
|
{
|
|
|
|
GtkSettings * settings;
|
2003-10-03 18:17:39 +00:00
|
|
|
int cursor_blink_time;
|
2003-09-15 14:02:23 +00:00
|
|
|
|
|
|
|
settings = gtk_settings_get_default ();
|
|
|
|
if (!settings)
|
|
|
|
return;
|
|
|
|
|
|
|
|
cursor_blink_time = GetCaretBlinkTime ();
|
2004-11-19 23:30:47 +00:00
|
|
|
g_object_set (settings, "gtk-cursor-blink", cursor_blink_time > 0, NULL);
|
2003-09-15 14:02:23 +00:00
|
|
|
|
|
|
|
if (cursor_blink_time > 0)
|
2004-11-19 23:30:47 +00:00
|
|
|
g_object_set (settings, "gtk-cursor-blink-time", 2*cursor_blink_time,
|
|
|
|
NULL);
|
2003-09-15 14:02:23 +00:00
|
|
|
|
2005-06-03 19:54:03 +00:00
|
|
|
g_object_set (settings, "gtk-double-click-distance", GetSystemMetrics(SM_CXDOUBLECLK), NULL);
|
2004-11-19 23:30:47 +00:00
|
|
|
g_object_set (settings, "gtk-double-click-time", GetDoubleClickTime(), NULL);
|
2005-06-03 19:54:03 +00:00
|
|
|
g_object_set (settings, "gtk-dnd-drag-threshold", GetSystemMetrics(SM_CXDRAG), NULL);
|
2003-09-15 14:02:23 +00:00
|
|
|
|
2004-06-07 02:11:50 +00:00
|
|
|
setup_menu_settings (settings);
|
2003-09-25 15:04:16 +00:00
|
|
|
|
2003-09-15 14:02:23 +00:00
|
|
|
/*
|
|
|
|
http://developer.gnome.org/doc/API/2.0/gtk/GtkSettings.html
|
|
|
|
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/sysinfo/base/systemparametersinfo.asp
|
|
|
|
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/sysinfo/base/getsystemmetrics.asp
|
|
|
|
*/
|
|
|
|
}
|
|
|
|
|
2003-08-29 22:10:07 +00:00
|
|
|
static void
|
|
|
|
setup_system_font(GtkStyle *style)
|
|
|
|
{
|
2003-09-02 22:09:49 +00:00
|
|
|
char buf[256], * font; /* It's okay, lfFaceName is smaller than 32 chars */
|
2003-08-29 22:10:07 +00:00
|
|
|
|
2004-05-21 21:12:07 +00:00
|
|
|
if ((font = sys_font_to_pango_font(XP_THEME_CLASS_TEXT,
|
|
|
|
XP_THEME_FONT_MESSAGE,
|
|
|
|
buf, sizeof (buf))) != NULL)
|
|
|
|
{
|
|
|
|
if (style->font_desc)
|
2004-06-07 02:11:50 +00:00
|
|
|
pango_font_description_free (style->font_desc);
|
|
|
|
|
2004-05-21 21:12:07 +00:00
|
|
|
style->font_desc = pango_font_description_from_string(font);
|
|
|
|
}
|
2003-04-15 18:31:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2003-10-21 18:51:29 +00:00
|
|
|
sys_color_to_gtk_color(XpThemeClass klazz, int id, GdkColor *pcolor)
|
2003-04-15 18:31:55 +00:00
|
|
|
{
|
2003-10-21 18:51:29 +00:00
|
|
|
DWORD color;
|
|
|
|
|
|
|
|
if (!xp_theme_get_system_color (klazz, id, &color))
|
|
|
|
color = GetSysColor(id);
|
|
|
|
|
2003-08-05 19:34:17 +00:00
|
|
|
pcolor->pixel = color;
|
|
|
|
pcolor->red = (GetRValue(color) << 8) | GetRValue(color);
|
|
|
|
pcolor->green = (GetGValue(color) << 8) | GetGValue(color);
|
|
|
|
pcolor->blue = (GetBValue(color) << 8) | GetBValue(color);
|
2003-04-15 18:31:55 +00:00
|
|
|
}
|
|
|
|
|
2003-10-21 18:51:29 +00:00
|
|
|
static int
|
|
|
|
get_system_metric(XpThemeClass klazz, int id)
|
|
|
|
{
|
2003-10-22 18:25:50 +00:00
|
|
|
int rval;
|
2003-10-21 18:51:29 +00:00
|
|
|
|
2003-10-22 18:25:50 +00:00
|
|
|
if (!xp_theme_get_system_metric(klazz, id, &rval))
|
|
|
|
rval = GetSystemMetrics (id);
|
2003-10-21 18:51:29 +00:00
|
|
|
|
2003-10-22 18:25:50 +00:00
|
|
|
return rval;
|
2003-10-21 18:51:29 +00:00
|
|
|
}
|
|
|
|
|
2003-04-15 18:31:55 +00:00
|
|
|
static void
|
2004-03-20 11:42:30 +00:00
|
|
|
setup_msw_rc_style(void)
|
2003-04-15 18:31:55 +00:00
|
|
|
{
|
2003-09-09 14:18:43 +00:00
|
|
|
char buf[1024], font_buf[256], *font_ptr;
|
2003-10-03 17:02:45 +00:00
|
|
|
|
2003-08-05 19:34:17 +00:00
|
|
|
GdkColor menu_color;
|
|
|
|
GdkColor menu_text_color;
|
2003-08-23 09:21:06 +00:00
|
|
|
GdkColor tooltip_back;
|
|
|
|
GdkColor tooltip_fore;
|
|
|
|
GdkColor btn_fore;
|
2003-11-04 21:59:26 +00:00
|
|
|
GdkColor btn_face;
|
2003-08-23 09:21:06 +00:00
|
|
|
GdkColor progress_back;
|
|
|
|
|
2003-10-03 17:02:45 +00:00
|
|
|
GdkColor fg_prelight;
|
|
|
|
GdkColor bg_prelight;
|
|
|
|
GdkColor base_prelight;
|
|
|
|
GdkColor text_prelight;
|
|
|
|
|
2005-07-28 12:24:25 +00:00
|
|
|
gboolean xp_theme = xp_theme_is_active();
|
|
|
|
|
2003-08-05 19:34:17 +00:00
|
|
|
/* Prelight */
|
2003-11-14 17:51:31 +00:00
|
|
|
sys_color_to_gtk_color(XP_THEME_CLASS_TEXT, COLOR_HIGHLIGHTTEXT, &fg_prelight);
|
|
|
|
sys_color_to_gtk_color(XP_THEME_CLASS_TEXT, COLOR_HIGHLIGHT, &bg_prelight);
|
|
|
|
sys_color_to_gtk_color(XP_THEME_CLASS_TEXT, COLOR_HIGHLIGHT, &base_prelight);
|
|
|
|
sys_color_to_gtk_color(XP_THEME_CLASS_TEXT, COLOR_HIGHLIGHTTEXT, &text_prelight);
|
2003-04-15 18:31:55 +00:00
|
|
|
|
2003-10-21 18:51:29 +00:00
|
|
|
sys_color_to_gtk_color(XP_THEME_CLASS_MENU, COLOR_MENUTEXT, &menu_text_color);
|
|
|
|
sys_color_to_gtk_color(XP_THEME_CLASS_MENU, COLOR_MENU, &menu_color);
|
2003-04-15 18:31:55 +00:00
|
|
|
|
2003-08-23 09:21:06 +00:00
|
|
|
/* tooltips */
|
2003-10-21 18:51:29 +00:00
|
|
|
sys_color_to_gtk_color(XP_THEME_CLASS_TOOLTIP, COLOR_INFOTEXT, &tooltip_fore);
|
|
|
|
sys_color_to_gtk_color(XP_THEME_CLASS_TOOLTIP, COLOR_INFOBK, &tooltip_back);
|
2003-08-23 09:21:06 +00:00
|
|
|
|
|
|
|
/* text on push buttons. TODO: button shadows, backgrounds, and highlights */
|
2003-10-21 18:51:29 +00:00
|
|
|
sys_color_to_gtk_color(XP_THEME_CLASS_BUTTON, COLOR_BTNTEXT, &btn_fore);
|
2003-11-04 21:59:26 +00:00
|
|
|
sys_color_to_gtk_color(XP_THEME_CLASS_BUTTON, COLOR_BTNFACE, &btn_face);
|
2003-08-23 09:21:06 +00:00
|
|
|
|
|
|
|
/* progress bar background color */
|
2003-10-21 18:51:29 +00:00
|
|
|
sys_color_to_gtk_color(XP_THEME_CLASS_PROGRESS, COLOR_HIGHLIGHT, &progress_back);
|
2003-08-23 09:21:06 +00:00
|
|
|
|
|
|
|
/* Enable coloring for menus. */
|
2003-11-14 17:51:31 +00:00
|
|
|
font_ptr = sys_font_to_pango_font (XP_THEME_CLASS_MENU, XP_THEME_FONT_MENU,font_buf, sizeof (font_buf));
|
|
|
|
g_snprintf(buf, sizeof (buf),
|
2004-03-20 11:42:30 +00:00
|
|
|
"style \"msw-menu\" = \"msw-default\"\n"
|
2003-11-24 15:05:48 +00:00
|
|
|
"{\n"
|
|
|
|
"fg[PRELIGHT] = { %d, %d, %d }\n"
|
|
|
|
"bg[PRELIGHT] = { %d, %d, %d }\n"
|
|
|
|
"text[PRELIGHT] = { %d, %d, %d }\n"
|
|
|
|
"base[PRELIGHT] = { %d, %d, %d }\n"
|
|
|
|
"fg[NORMAL] = { %d, %d, %d }\n"
|
|
|
|
"bg[NORMAL] = { %d, %d, %d }\n"
|
|
|
|
"%s = \"%s\"\n"
|
2004-03-20 11:42:30 +00:00
|
|
|
"}widget_class \"*MenuItem*\" style \"msw-menu\"\n"
|
|
|
|
"widget_class \"*GtkMenu\" style \"msw-menu\"\n"
|
|
|
|
"widget_class \"*GtkMenuShell*\" style \"msw-menu\"\n",
|
2003-11-24 15:05:48 +00:00
|
|
|
fg_prelight.red,
|
|
|
|
fg_prelight.green,
|
|
|
|
fg_prelight.blue,
|
|
|
|
bg_prelight.red,
|
|
|
|
bg_prelight.green,
|
|
|
|
bg_prelight.blue,
|
|
|
|
text_prelight.red,
|
|
|
|
text_prelight.green,
|
|
|
|
text_prelight.blue,
|
|
|
|
base_prelight.red,
|
|
|
|
base_prelight.green,
|
|
|
|
base_prelight.blue,
|
|
|
|
menu_text_color.red,
|
|
|
|
menu_text_color.green,
|
|
|
|
menu_text_color.blue,
|
|
|
|
menu_color.red,
|
|
|
|
menu_color.green,
|
|
|
|
menu_color.blue,
|
|
|
|
(font_ptr ? "font_name" : "#"),
|
|
|
|
(font_ptr ? font_ptr : " font name should go here"));
|
2003-08-05 19:34:17 +00:00
|
|
|
gtk_rc_parse_string(buf);
|
2003-12-30 17:22:30 +00:00
|
|
|
|
2003-11-24 15:05:48 +00:00
|
|
|
/* Enable coloring for menu bars. */
|
|
|
|
g_snprintf(buf, sizeof (buf),
|
2004-03-20 11:42:30 +00:00
|
|
|
"style \"msw-menu-bar\" = \"msw-menu\"\n"
|
2003-11-24 15:05:48 +00:00
|
|
|
"{\n"
|
|
|
|
"bg[NORMAL] = { %d, %d, %d }\n"
|
2005-07-28 12:24:25 +00:00
|
|
|
"GtkMenuBar::shadow-type = %s\n"
|
2004-03-20 11:42:30 +00:00
|
|
|
"}widget_class \"*MenuBar*\" style \"msw-menu-bar\"\n",
|
2003-11-24 15:05:48 +00:00
|
|
|
btn_face.red,
|
|
|
|
btn_face.green,
|
2005-07-28 12:24:25 +00:00
|
|
|
btn_face.blue,
|
|
|
|
(xp_theme ? "etched-in" : "out"));
|
|
|
|
gtk_rc_parse_string(buf);
|
|
|
|
|
|
|
|
g_snprintf(buf, sizeof (buf),
|
|
|
|
"style \"msw-toolbar\" = \"msw-default\"\n"
|
|
|
|
"{\n"
|
|
|
|
"GtkHandleBox::shadow-type = %s\n"
|
|
|
|
"GtkToolbar::shadow-type = %s\n"
|
|
|
|
"}widget_class \"*HandleBox*\" style \"msw-toolbar\"\n",
|
|
|
|
(xp_theme ? "none" : "out"),
|
|
|
|
(xp_theme ? "none" : "out"));
|
2003-11-24 15:05:48 +00:00
|
|
|
gtk_rc_parse_string(buf);
|
2003-12-30 17:22:30 +00:00
|
|
|
|
2003-09-03 17:40:23 +00:00
|
|
|
/* enable tooltip fonts */
|
2003-11-14 17:51:31 +00:00
|
|
|
font_ptr = sys_font_to_pango_font (XP_THEME_CLASS_STATUS, XP_THEME_FONT_STATUS,font_buf, sizeof (font_buf));
|
|
|
|
g_snprintf(buf, sizeof (buf),
|
2004-03-20 11:42:30 +00:00
|
|
|
"style \"msw-tooltips-caption\" = \"msw-default\"\n"
|
2003-11-24 15:05:48 +00:00
|
|
|
"{fg[NORMAL] = { %d, %d, %d }\n"
|
|
|
|
"%s = \"%s\"\n"
|
2004-03-20 11:42:30 +00:00
|
|
|
"}widget \"gtk-tooltips.GtkLabel\" style \"msw-tooltips-caption\"\n",
|
2003-11-24 15:05:48 +00:00
|
|
|
tooltip_fore.red,
|
|
|
|
tooltip_fore.green,
|
|
|
|
tooltip_fore.blue,
|
|
|
|
(font_ptr ? "font_name" : "#"),
|
|
|
|
(font_ptr ? font_ptr : " font name should go here"));
|
2003-08-29 22:10:07 +00:00
|
|
|
gtk_rc_parse_string(buf);
|
2003-12-30 17:22:30 +00:00
|
|
|
|
2003-11-14 17:51:31 +00:00
|
|
|
g_snprintf(buf, sizeof (buf),
|
2004-03-20 11:42:30 +00:00
|
|
|
"style \"msw-tooltips\" = \"msw-default\"\n"
|
2003-11-24 15:05:48 +00:00
|
|
|
"{bg[NORMAL] = { %d, %d, %d }\n"
|
2004-03-20 11:42:30 +00:00
|
|
|
"}widget \"gtk-tooltips*\" style \"msw-tooltips\"\n",
|
2003-11-24 15:05:48 +00:00
|
|
|
tooltip_back.red,
|
|
|
|
tooltip_back.green,
|
|
|
|
tooltip_back.blue);
|
2003-08-23 09:21:06 +00:00
|
|
|
gtk_rc_parse_string(buf);
|
2003-12-30 17:22:30 +00:00
|
|
|
|
2003-08-29 22:10:07 +00:00
|
|
|
/* enable font theming for status bars */
|
2003-11-14 17:51:31 +00:00
|
|
|
font_ptr = sys_font_to_pango_font (XP_THEME_CLASS_STATUS, XP_THEME_FONT_STATUS,font_buf, sizeof (font_buf));
|
|
|
|
g_snprintf(buf, sizeof (buf),
|
2004-03-20 11:42:30 +00:00
|
|
|
"style \"msw-status\" = \"msw-default\"\n"
|
2003-11-24 15:05:48 +00:00
|
|
|
"{%s = \"%s\"\n"
|
|
|
|
"bg[NORMAL] = { %d, %d, %d }\n"
|
2004-03-20 11:42:30 +00:00
|
|
|
"}widget_class \"*Status*\" style \"msw-status\"\n",
|
2003-11-24 15:05:48 +00:00
|
|
|
(font_ptr ? "font_name" : "#"),
|
|
|
|
(font_ptr ? font_ptr : " font name should go here"),
|
|
|
|
btn_face.red, btn_face.green, btn_face.blue);
|
2003-08-29 22:10:07 +00:00
|
|
|
gtk_rc_parse_string(buf);
|
2003-12-30 17:22:30 +00:00
|
|
|
|
2003-08-23 09:21:06 +00:00
|
|
|
/* enable coloring for text on buttons
|
|
|
|
TODO: use GetThemeMetric for the border and outside border */
|
2003-11-14 17:51:31 +00:00
|
|
|
g_snprintf(buf, sizeof (buf),
|
2004-03-20 11:42:30 +00:00
|
|
|
"style \"msw-button\" = \"msw-default\"\n"
|
2003-11-24 15:05:48 +00:00
|
|
|
"{\n"
|
|
|
|
"bg[NORMAL] = { %d, %d, %d }\n"
|
|
|
|
"bg[PRELIGHT] = { %d, %d, %d }\n"
|
|
|
|
"bg[INSENSITIVE] = { %d, %d, %d }\n"
|
|
|
|
"fg[PRELIGHT] = { %d, %d, %d }\n"
|
|
|
|
"GtkButton::default-border = { 1, 1, 1, 1 }\n"
|
|
|
|
"GtkButton::default-outside-border = { 0, 0, 0, 0 }\n"
|
|
|
|
"GtkButton::child-displacement-x = 1\n"
|
|
|
|
"GtkButton::child-displacement-y = 1\n"
|
2004-03-20 11:42:30 +00:00
|
|
|
"}widget_class \"*Button*\" style \"msw-button\"\n",
|
2003-11-24 15:05:48 +00:00
|
|
|
btn_face.red, btn_face.green, btn_face.blue,
|
|
|
|
btn_face.red, btn_face.green, btn_face.blue,
|
|
|
|
btn_face.red, btn_face.green, btn_face.blue,
|
|
|
|
btn_fore.red, btn_fore.green, btn_fore.blue
|
|
|
|
);
|
2003-08-23 09:21:06 +00:00
|
|
|
gtk_rc_parse_string(buf);
|
2003-11-26 18:03:14 +00:00
|
|
|
|
2003-08-23 09:21:06 +00:00
|
|
|
/* enable coloring for progress bars */
|
2003-11-14 17:51:31 +00:00
|
|
|
g_snprintf(buf, sizeof (buf),
|
2004-03-20 11:42:30 +00:00
|
|
|
"style \"msw-progress\" = \"msw-default\"\n"
|
2003-11-24 15:05:48 +00:00
|
|
|
"{bg[PRELIGHT] = { %d, %d, %d }\n"
|
|
|
|
"bg[NORMAL] = { %d, %d, %d }\n"
|
2004-03-20 11:42:30 +00:00
|
|
|
"}widget_class \"*Progress*\" style \"msw-progress\"\n",
|
2003-11-24 15:05:48 +00:00
|
|
|
progress_back.red,
|
|
|
|
progress_back.green,
|
|
|
|
progress_back.blue,
|
|
|
|
btn_face.red, btn_face.green, btn_face.blue);
|
2003-08-23 09:21:06 +00:00
|
|
|
gtk_rc_parse_string(buf);
|
2003-12-30 17:22:30 +00:00
|
|
|
|
2003-09-08 13:53:25 +00:00
|
|
|
/* scrollbar thumb width and height */
|
2003-11-14 17:51:31 +00:00
|
|
|
g_snprintf(buf, sizeof (buf),
|
2004-03-20 11:42:30 +00:00
|
|
|
"style \"msw-vscrollbar\" = \"msw-default\"\n"
|
2003-11-24 15:05:48 +00:00
|
|
|
"{GtkRange::slider-width = %d\n"
|
|
|
|
"GtkRange::stepper-size = %d\n"
|
|
|
|
"GtkRange::stepper-spacing = 0\n"
|
|
|
|
"GtkRange::trough_border = 0\n"
|
2005-07-28 12:24:25 +00:00
|
|
|
"GtkScale::slider-length = %d\n"
|
2005-10-22 15:53:00 +00:00
|
|
|
"GtkScrollbar::min-slider-length = 8\n"
|
2005-07-28 12:24:25 +00:00
|
|
|
"}widget_class \"*VScrollbar*\" style \"msw-vscrollbar\"\n"
|
|
|
|
"widget_class \"*VScale*\" style \"msw-vscrollbar\"\n",
|
2003-11-24 15:05:48 +00:00
|
|
|
GetSystemMetrics(SM_CYVTHUMB),
|
2005-07-28 12:24:25 +00:00
|
|
|
get_system_metric(XP_THEME_CLASS_SCROLLBAR, SM_CXVSCROLL),
|
|
|
|
11);
|
2003-09-08 13:53:25 +00:00
|
|
|
gtk_rc_parse_string(buf);
|
2003-12-30 17:22:30 +00:00
|
|
|
|
2003-11-14 17:51:31 +00:00
|
|
|
g_snprintf(buf, sizeof (buf),
|
2004-03-20 11:42:30 +00:00
|
|
|
"style \"msw-hscrollbar\" = \"msw-default\"\n"
|
2003-11-24 15:05:48 +00:00
|
|
|
"{GtkRange::slider-width = %d\n"
|
|
|
|
"GtkRange::stepper-size = %d\n"
|
|
|
|
"GtkRange::stepper-spacing = 0\n"
|
|
|
|
"GtkRange::trough_border = 0\n"
|
2005-07-28 12:24:25 +00:00
|
|
|
"GtkScale::slider-length = %d\n"
|
2005-10-22 15:53:00 +00:00
|
|
|
"GtkScrollbar::min-slider-length = 8\n"
|
2005-07-28 12:24:25 +00:00
|
|
|
"}widget_class \"*HScrollbar*\" style \"msw-hscrollbar\"\n"
|
|
|
|
"widget_class \"*HScale*\" style \"msw-hscrollbar\"\n",
|
2003-11-24 15:05:48 +00:00
|
|
|
GetSystemMetrics(SM_CXHTHUMB),
|
2005-07-28 12:24:25 +00:00
|
|
|
get_system_metric(XP_THEME_CLASS_SCROLLBAR, SM_CYHSCROLL),
|
|
|
|
11);
|
2003-09-08 13:53:25 +00:00
|
|
|
gtk_rc_parse_string(buf);
|
2003-12-30 17:22:30 +00:00
|
|
|
|
2003-09-08 13:53:25 +00:00
|
|
|
/* radio/check button sizes */
|
2003-11-14 17:51:31 +00:00
|
|
|
g_snprintf(buf, sizeof (buf),
|
2004-03-20 11:42:30 +00:00
|
|
|
"style \"msw-checkbutton\" = \"msw-button\"\n"
|
2003-11-24 15:05:48 +00:00
|
|
|
"{GtkCheckButton::indicator-size = 13\n"
|
2004-03-20 11:42:30 +00:00
|
|
|
"}widget_class \"*CheckButton*\" style \"msw-checkbutton\"\n"
|
|
|
|
"widget_class \"*RadioButton*\" style \"msw-checkbutton\"\n");
|
2003-09-08 13:53:25 +00:00
|
|
|
gtk_rc_parse_string(buf);
|
2003-08-23 09:21:06 +00:00
|
|
|
}
|
2003-04-15 18:31:55 +00:00
|
|
|
|
2003-10-03 17:02:45 +00:00
|
|
|
static void
|
|
|
|
setup_system_styles(GtkStyle *style)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
/* Default background */
|
2003-11-04 21:59:26 +00:00
|
|
|
sys_color_to_gtk_color(XP_THEME_CLASS_BUTTON, COLOR_BTNFACE, &style->bg[GTK_STATE_NORMAL]);
|
2003-11-14 17:51:31 +00:00
|
|
|
sys_color_to_gtk_color(XP_THEME_CLASS_TEXT, COLOR_HIGHLIGHT, &style->bg[GTK_STATE_SELECTED]);
|
2003-11-04 21:59:26 +00:00
|
|
|
sys_color_to_gtk_color(XP_THEME_CLASS_BUTTON, COLOR_BTNFACE, &style->bg[GTK_STATE_INSENSITIVE]);
|
|
|
|
sys_color_to_gtk_color(XP_THEME_CLASS_BUTTON, COLOR_BTNFACE, &style->bg[GTK_STATE_ACTIVE]);
|
|
|
|
sys_color_to_gtk_color(XP_THEME_CLASS_BUTTON, COLOR_BTNFACE, &style->bg[GTK_STATE_PRELIGHT]);
|
2003-10-03 17:02:45 +00:00
|
|
|
|
|
|
|
/* Default base */
|
2003-11-04 21:59:26 +00:00
|
|
|
sys_color_to_gtk_color(XP_THEME_CLASS_WINDOW, COLOR_WINDOW, &style->base[GTK_STATE_NORMAL]);
|
2003-11-14 17:51:31 +00:00
|
|
|
sys_color_to_gtk_color(XP_THEME_CLASS_TEXT, COLOR_HIGHLIGHT, &style->base[GTK_STATE_SELECTED]);
|
2003-11-04 21:59:26 +00:00
|
|
|
sys_color_to_gtk_color(XP_THEME_CLASS_BUTTON, COLOR_BTNFACE, &style->base[GTK_STATE_INSENSITIVE]);
|
|
|
|
sys_color_to_gtk_color(XP_THEME_CLASS_BUTTON, COLOR_BTNFACE, &style->base[GTK_STATE_ACTIVE]);
|
|
|
|
sys_color_to_gtk_color(XP_THEME_CLASS_WINDOW, COLOR_WINDOW, &style->base[GTK_STATE_PRELIGHT]);
|
2003-10-03 17:02:45 +00:00
|
|
|
|
|
|
|
/* Default text */
|
2003-11-04 21:59:26 +00:00
|
|
|
sys_color_to_gtk_color(XP_THEME_CLASS_WINDOW, COLOR_WINDOWTEXT, &style->text[GTK_STATE_NORMAL]);
|
2003-11-14 17:51:31 +00:00
|
|
|
sys_color_to_gtk_color(XP_THEME_CLASS_TEXT, COLOR_HIGHLIGHTTEXT, &style->text[GTK_STATE_SELECTED]);
|
2003-11-04 21:59:26 +00:00
|
|
|
sys_color_to_gtk_color(XP_THEME_CLASS_BUTTON, COLOR_GRAYTEXT, &style->text[GTK_STATE_INSENSITIVE]);
|
|
|
|
sys_color_to_gtk_color(XP_THEME_CLASS_BUTTON, COLOR_BTNTEXT, &style->text[GTK_STATE_ACTIVE]);
|
|
|
|
sys_color_to_gtk_color(XP_THEME_CLASS_WINDOW, COLOR_WINDOWTEXT, &style->text[GTK_STATE_PRELIGHT]);
|
|
|
|
|
2005-08-19 19:21:45 +00:00
|
|
|
/* Default foreground */
|
2003-11-04 21:59:26 +00:00
|
|
|
sys_color_to_gtk_color(XP_THEME_CLASS_BUTTON, COLOR_BTNTEXT, &style->fg[GTK_STATE_NORMAL]);
|
2003-11-14 17:51:31 +00:00
|
|
|
sys_color_to_gtk_color(XP_THEME_CLASS_TEXT, COLOR_HIGHLIGHTTEXT, &style->fg[GTK_STATE_SELECTED]);
|
|
|
|
sys_color_to_gtk_color(XP_THEME_CLASS_TEXT, COLOR_GRAYTEXT, &style->fg[GTK_STATE_INSENSITIVE]);
|
2003-11-04 21:59:26 +00:00
|
|
|
sys_color_to_gtk_color(XP_THEME_CLASS_BUTTON, COLOR_BTNTEXT, &style->fg[GTK_STATE_ACTIVE]);
|
2003-11-14 17:51:31 +00:00
|
|
|
sys_color_to_gtk_color(XP_THEME_CLASS_WINDOW, COLOR_WINDOWTEXT, &style->fg[GTK_STATE_PRELIGHT]);
|
2003-10-03 17:02:45 +00:00
|
|
|
|
|
|
|
for (i = 0; i < 5; i++)
|
|
|
|
{
|
2003-10-21 18:51:29 +00:00
|
|
|
sys_color_to_gtk_color(XP_THEME_CLASS_BUTTON, COLOR_3DSHADOW, &style->dark[i]);
|
|
|
|
sys_color_to_gtk_color(XP_THEME_CLASS_BUTTON, COLOR_3DHILIGHT, &style->light[i]);
|
2003-10-03 17:02:45 +00:00
|
|
|
|
|
|
|
style->mid[i].red = (style->light[i].red + style->dark[i].red) / 2;
|
|
|
|
style->mid[i].green = (style->light[i].green + style->dark[i].green) / 2;
|
|
|
|
style->mid[i].blue = (style->light[i].blue + style->dark[i].blue) / 2;
|
|
|
|
|
|
|
|
style->text_aa[i].red = (style->text[i].red + style->base[i].red) / 2;
|
|
|
|
style->text_aa[i].green = (style->text[i].green + style->base[i].green) / 2;
|
|
|
|
style->text_aa[i].blue = (style->text[i].blue + style->base[i].blue) / 2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-08-23 09:21:06 +00:00
|
|
|
static gboolean
|
2003-04-15 18:31:55 +00:00
|
|
|
sanitize_size (GdkWindow *window,
|
|
|
|
gint *width,
|
|
|
|
gint *height)
|
|
|
|
{
|
|
|
|
gboolean set_bg = FALSE;
|
|
|
|
|
|
|
|
if ((*width == -1) && (*height == -1))
|
|
|
|
{
|
|
|
|
set_bg = GDK_IS_WINDOW (window);
|
2004-08-30 20:58:57 +00:00
|
|
|
gdk_drawable_get_size (window, width, height);
|
2003-04-15 18:31:55 +00:00
|
|
|
}
|
|
|
|
else if (*width == -1)
|
2004-08-30 20:58:57 +00:00
|
|
|
gdk_drawable_get_size (window, width, NULL);
|
2003-04-15 18:31:55 +00:00
|
|
|
else if (*height == -1)
|
2004-08-30 20:58:57 +00:00
|
|
|
gdk_drawable_get_size (window, NULL, height);
|
2003-04-15 18:31:55 +00:00
|
|
|
|
|
|
|
return set_bg;
|
|
|
|
}
|
|
|
|
|
2003-08-06 20:05:39 +00:00
|
|
|
static XpThemeElement
|
|
|
|
map_gtk_progress_bar_to_xp(GtkProgressBar *progress_bar, gboolean trough)
|
|
|
|
{
|
|
|
|
XpThemeElement ret;
|
|
|
|
switch (progress_bar->orientation)
|
|
|
|
{
|
|
|
|
case GTK_PROGRESS_LEFT_TO_RIGHT:
|
|
|
|
case GTK_PROGRESS_RIGHT_TO_LEFT:
|
|
|
|
ret = trough
|
|
|
|
? XP_THEME_ELEMENT_PROGRESS_TROUGH_H
|
|
|
|
: XP_THEME_ELEMENT_PROGRESS_BAR_H;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
ret = trough
|
|
|
|
? XP_THEME_ELEMENT_PROGRESS_TROUGH_V
|
|
|
|
: XP_THEME_ELEMENT_PROGRESS_BAR_V;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2003-04-15 18:31:55 +00:00
|
|
|
static void
|
|
|
|
draw_part (GdkDrawable *drawable,
|
|
|
|
GdkGC *gc,
|
|
|
|
GdkRectangle *area,
|
|
|
|
gint x,
|
|
|
|
gint y,
|
|
|
|
Part part)
|
|
|
|
{
|
|
|
|
if (area)
|
|
|
|
gdk_gc_set_clip_rectangle (gc, area);
|
2003-08-23 09:21:06 +00:00
|
|
|
|
2003-04-15 18:31:55 +00:00
|
|
|
if (!parts[part].bmap)
|
|
|
|
parts[part].bmap = gdk_bitmap_create_from_data (drawable,
|
|
|
|
parts[part].bits,
|
|
|
|
PART_SIZE, PART_SIZE);
|
|
|
|
|
|
|
|
gdk_gc_set_ts_origin (gc, x, y);
|
|
|
|
gdk_gc_set_stipple (gc, parts[part].bmap);
|
|
|
|
gdk_gc_set_fill (gc, GDK_STIPPLED);
|
|
|
|
|
|
|
|
gdk_draw_rectangle (drawable, gc, TRUE, x, y, PART_SIZE, PART_SIZE);
|
|
|
|
|
|
|
|
gdk_gc_set_fill (gc, GDK_SOLID);
|
|
|
|
|
|
|
|
if (area)
|
|
|
|
gdk_gc_set_clip_rectangle (gc, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
draw_check(GtkStyle *style,
|
|
|
|
GdkWindow *window,
|
|
|
|
GtkStateType state,
|
|
|
|
GtkShadowType shadow,
|
|
|
|
GdkRectangle *area,
|
|
|
|
GtkWidget *widget,
|
|
|
|
const gchar *detail,
|
|
|
|
gint x,
|
|
|
|
gint y,
|
|
|
|
gint width,
|
|
|
|
gint height)
|
|
|
|
{
|
|
|
|
x -= (1 + PART_SIZE - width) / 2;
|
|
|
|
y -= (1 + PART_SIZE - height) / 2;
|
2003-08-23 09:21:06 +00:00
|
|
|
|
2003-04-15 18:31:55 +00:00
|
|
|
if (detail && strcmp (detail, "check") == 0) /* Menu item */
|
|
|
|
{
|
|
|
|
if (shadow == GTK_SHADOW_IN)
|
|
|
|
{
|
|
|
|
draw_part (window, style->black_gc, area, x, y, CHECK_TEXT);
|
|
|
|
draw_part (window, style->dark_gc[state], area, x, y, CHECK_AA);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2004-06-07 02:11:50 +00:00
|
|
|
if (!xp_theme_draw(window, shadow == GTK_SHADOW_IN
|
|
|
|
? XP_THEME_ELEMENT_PRESSED_CHECKBOX
|
|
|
|
: XP_THEME_ELEMENT_CHECKBOX,
|
|
|
|
style, x, y, width, height, state, area))
|
2003-04-15 18:31:55 +00:00
|
|
|
{
|
|
|
|
draw_part (window, style->black_gc, area, x, y, CHECK_BLACK);
|
|
|
|
draw_part (window, style->dark_gc[state], area, x, y, CHECK_DARK);
|
|
|
|
draw_part (window, style->mid_gc[state], area, x, y, CHECK_MID);
|
|
|
|
draw_part (window, style->light_gc[state], area, x, y, CHECK_LIGHT);
|
|
|
|
draw_part (window, style->base_gc[state], area, x, y, CHECK_BASE);
|
2003-08-23 09:21:06 +00:00
|
|
|
|
2003-04-15 18:31:55 +00:00
|
|
|
if (shadow == GTK_SHADOW_IN)
|
|
|
|
{
|
|
|
|
draw_part (window, style->text_gc[state], area, x, y, CHECK_TEXT);
|
|
|
|
draw_part (window, style->text_aa_gc[state], area, x, y, CHECK_AA);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
draw_expander(GtkStyle *style,
|
|
|
|
GdkWindow *window,
|
|
|
|
GtkStateType state,
|
|
|
|
GdkRectangle *area,
|
|
|
|
GtkWidget *widget,
|
|
|
|
const gchar *detail,
|
|
|
|
gint x,
|
|
|
|
gint y,
|
|
|
|
GtkExpanderStyle expander_style)
|
|
|
|
{
|
|
|
|
gint expander_size;
|
|
|
|
gint expander_semi_size;
|
|
|
|
GdkColor color;
|
|
|
|
GdkGCValues values;
|
|
|
|
gboolean success;
|
2003-08-05 19:34:17 +00:00
|
|
|
XpThemeElement xp_expander;
|
2003-04-15 18:31:55 +00:00
|
|
|
|
|
|
|
gtk_widget_style_get (widget, "expander_size", &expander_size, NULL);
|
|
|
|
|
2003-08-05 19:34:17 +00:00
|
|
|
switch (expander_style)
|
|
|
|
{
|
|
|
|
case GTK_EXPANDER_COLLAPSED:
|
|
|
|
case GTK_EXPANDER_SEMI_COLLAPSED:
|
|
|
|
xp_expander = XP_THEME_ELEMENT_TREEVIEW_EXPANDER_CLOSED;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
xp_expander = XP_THEME_ELEMENT_TREEVIEW_EXPANDER_OPENED;
|
|
|
|
break;
|
|
|
|
}
|
2003-08-23 09:21:06 +00:00
|
|
|
|
2003-09-15 20:52:37 +00:00
|
|
|
if ((expander_size % 2) == 0)
|
|
|
|
expander_size--;
|
2003-04-15 18:31:55 +00:00
|
|
|
|
|
|
|
if (expander_size > 2)
|
|
|
|
expander_size -= 2;
|
2003-09-25 15:04:16 +00:00
|
|
|
|
2003-04-15 18:31:55 +00:00
|
|
|
if (area)
|
|
|
|
gdk_gc_set_clip_rectangle (style->fg_gc[state], area);
|
|
|
|
|
|
|
|
expander_semi_size = expander_size / 2;
|
|
|
|
x -= expander_semi_size;
|
|
|
|
y -= expander_semi_size;
|
|
|
|
|
|
|
|
gdk_gc_get_values (style->fg_gc[state], &values);
|
|
|
|
|
2003-09-20 09:56:27 +00:00
|
|
|
if (! xp_theme_draw(window, xp_expander, style,
|
|
|
|
x, y,
|
|
|
|
expander_size, expander_size, state, area))
|
2003-09-15 20:52:37 +00:00
|
|
|
{
|
2003-09-20 09:56:27 +00:00
|
|
|
/* RGB values to emulate Windows Classic style */
|
|
|
|
color.red = color.green = color.blue = 128 << 8;
|
2003-04-15 18:31:55 +00:00
|
|
|
|
2003-09-20 09:56:27 +00:00
|
|
|
success = gdk_colormap_alloc_color
|
|
|
|
(gtk_widget_get_default_colormap (), &color, FALSE, TRUE);
|
2003-04-15 18:31:55 +00:00
|
|
|
|
2003-09-20 09:56:27 +00:00
|
|
|
if (success)
|
|
|
|
gdk_gc_set_foreground (style->fg_gc[state], &color);
|
2003-04-15 18:31:55 +00:00
|
|
|
|
2003-09-20 09:56:27 +00:00
|
|
|
gdk_draw_rectangle
|
|
|
|
(window, style->fg_gc[state], FALSE, x, y,
|
|
|
|
expander_size - 1, expander_size - 1);
|
2003-08-23 09:21:06 +00:00
|
|
|
|
2003-04-15 18:31:55 +00:00
|
|
|
gdk_draw_line
|
2003-09-20 09:56:27 +00:00
|
|
|
(window, style->fg_gc[state], x + 2, y + expander_semi_size,
|
|
|
|
x + expander_size - 2, y + expander_semi_size);
|
|
|
|
|
|
|
|
switch (expander_style)
|
|
|
|
{
|
|
|
|
case GTK_EXPANDER_COLLAPSED:
|
|
|
|
case GTK_EXPANDER_SEMI_COLLAPSED:
|
|
|
|
gdk_draw_line
|
|
|
|
(window, style->fg_gc[state], x + expander_semi_size, y + 2,
|
|
|
|
x + expander_semi_size, y + expander_size - 2);
|
|
|
|
break;
|
2005-03-20 23:10:14 +00:00
|
|
|
|
|
|
|
default:
|
|
|
|
break;
|
2003-09-20 09:56:27 +00:00
|
|
|
}
|
2003-12-01 18:56:34 +00:00
|
|
|
|
|
|
|
if (success)
|
|
|
|
gdk_gc_set_foreground (style->fg_gc[state], &values.foreground);
|
2003-04-15 18:31:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (area)
|
|
|
|
gdk_gc_set_clip_rectangle (style->fg_gc[state], NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
draw_option(GtkStyle *style,
|
|
|
|
GdkWindow *window,
|
|
|
|
GtkStateType state,
|
|
|
|
GtkShadowType shadow,
|
|
|
|
GdkRectangle *area,
|
|
|
|
GtkWidget *widget,
|
|
|
|
const gchar *detail,
|
|
|
|
gint x,
|
|
|
|
gint y,
|
|
|
|
gint width,
|
|
|
|
gint height)
|
|
|
|
{
|
|
|
|
x -= (1 + PART_SIZE - width) / 2;
|
|
|
|
y -= (1 + PART_SIZE - height) / 2;
|
2003-08-23 09:21:06 +00:00
|
|
|
|
2003-04-15 18:31:55 +00:00
|
|
|
if (detail && strcmp (detail, "option") == 0) /* Menu item */
|
|
|
|
{
|
|
|
|
if (shadow == GTK_SHADOW_IN)
|
|
|
|
draw_part (window, style->fg_gc[state], area, x, y, RADIO_TEXT);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2003-10-14 18:35:43 +00:00
|
|
|
if (xp_theme_draw (window, shadow == GTK_SHADOW_IN
|
|
|
|
? XP_THEME_ELEMENT_PRESSED_RADIO_BUTTON
|
|
|
|
: XP_THEME_ELEMENT_RADIO_BUTTON,
|
|
|
|
style, x, y, width, height, state, area))
|
2003-04-15 18:31:55 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
draw_part (window, style->black_gc, area, x, y, RADIO_BLACK);
|
|
|
|
draw_part (window, style->dark_gc[state], area, x, y, RADIO_DARK);
|
|
|
|
draw_part (window, style->mid_gc[state], area, x, y, RADIO_MID);
|
|
|
|
draw_part (window, style->light_gc[state], area, x, y, RADIO_LIGHT);
|
|
|
|
draw_part (window, style->base_gc[state], area, x, y, RADIO_BASE);
|
2003-08-23 09:21:06 +00:00
|
|
|
|
2003-04-15 18:31:55 +00:00
|
|
|
if (shadow == GTK_SHADOW_IN)
|
|
|
|
draw_part (window, style->text_gc[state], area, x, y, RADIO_TEXT);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
draw_varrow (GdkWindow *window,
|
|
|
|
GdkGC *gc,
|
|
|
|
GtkShadowType shadow_type,
|
|
|
|
GdkRectangle *area,
|
|
|
|
GtkArrowType arrow_type,
|
|
|
|
gint x,
|
|
|
|
gint y,
|
|
|
|
gint width,
|
|
|
|
gint height)
|
|
|
|
{
|
|
|
|
gint steps, extra;
|
|
|
|
gint y_start, y_increment;
|
|
|
|
gint i;
|
|
|
|
|
|
|
|
if (area)
|
|
|
|
gdk_gc_set_clip_rectangle (gc, area);
|
2003-08-23 09:21:06 +00:00
|
|
|
|
2003-04-15 18:31:55 +00:00
|
|
|
width = width + width % 2 - 1; /* Force odd */
|
2003-08-23 09:21:06 +00:00
|
|
|
|
2003-04-15 18:31:55 +00:00
|
|
|
steps = 1 + width / 2;
|
|
|
|
|
|
|
|
extra = height - steps;
|
|
|
|
|
|
|
|
if (arrow_type == GTK_ARROW_DOWN)
|
|
|
|
{
|
|
|
|
y_start = y;
|
|
|
|
y_increment = 1;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
y_start = y + height - 1;
|
|
|
|
y_increment = -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = extra; i < height; i++)
|
|
|
|
{
|
|
|
|
gdk_draw_line (window, gc,
|
|
|
|
x + (i - extra), y_start + i * y_increment,
|
|
|
|
x + width - (i - extra) - 1, y_start + i * y_increment);
|
|
|
|
}
|
2003-08-23 09:21:06 +00:00
|
|
|
|
2003-04-15 18:31:55 +00:00
|
|
|
if (area)
|
|
|
|
gdk_gc_set_clip_rectangle (gc, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
draw_harrow (GdkWindow *window,
|
|
|
|
GdkGC *gc,
|
|
|
|
GtkShadowType shadow_type,
|
|
|
|
GdkRectangle *area,
|
|
|
|
GtkArrowType arrow_type,
|
|
|
|
gint x,
|
|
|
|
gint y,
|
|
|
|
gint width,
|
|
|
|
gint height)
|
|
|
|
{
|
|
|
|
gint steps, extra;
|
|
|
|
gint x_start, x_increment;
|
|
|
|
gint i;
|
|
|
|
|
|
|
|
if (area)
|
|
|
|
gdk_gc_set_clip_rectangle (gc, area);
|
2003-08-23 09:21:06 +00:00
|
|
|
|
2003-04-15 18:31:55 +00:00
|
|
|
height = height + height % 2 - 1; /* Force odd */
|
2003-08-23 09:21:06 +00:00
|
|
|
|
2003-04-15 18:31:55 +00:00
|
|
|
steps = 1 + height / 2;
|
|
|
|
|
|
|
|
extra = width - steps;
|
|
|
|
|
|
|
|
if (arrow_type == GTK_ARROW_RIGHT)
|
|
|
|
{
|
|
|
|
x_start = x;
|
|
|
|
x_increment = 1;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
x_start = x + width - 1;
|
|
|
|
x_increment = -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = extra; i < width; i++)
|
|
|
|
{
|
|
|
|
gdk_draw_line (window, gc,
|
|
|
|
x_start + i * x_increment, y + (i - extra),
|
|
|
|
x_start + i * x_increment, y + height - (i - extra) - 1);
|
|
|
|
}
|
2003-08-23 09:21:06 +00:00
|
|
|
|
2003-04-15 18:31:55 +00:00
|
|
|
|
|
|
|
if (area)
|
|
|
|
gdk_gc_set_clip_rectangle (gc, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* This function makes up for some brokeness in gtkrange.c
|
|
|
|
* where we never get the full arrow of the stepper button
|
|
|
|
* and the type of button in a single drawing function.
|
|
|
|
*
|
|
|
|
* It doesn't work correctly when the scrollbar is squished
|
|
|
|
* to the point we don't have room for full-sized steppers.
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
reverse_engineer_stepper_box (GtkWidget *range,
|
|
|
|
GtkArrowType arrow_type,
|
|
|
|
gint *x,
|
|
|
|
gint *y,
|
|
|
|
gint *width,
|
|
|
|
gint *height)
|
|
|
|
{
|
|
|
|
gint slider_width = 14, stepper_size = 14;
|
|
|
|
gint box_width;
|
|
|
|
gint box_height;
|
2003-08-23 09:21:06 +00:00
|
|
|
|
2003-04-15 18:31:55 +00:00
|
|
|
if (range)
|
|
|
|
{
|
|
|
|
gtk_widget_style_get (range,
|
|
|
|
"slider_width", &slider_width,
|
|
|
|
"stepper_size", &stepper_size,
|
|
|
|
NULL);
|
|
|
|
}
|
2003-08-23 09:21:06 +00:00
|
|
|
|
2003-04-15 18:31:55 +00:00
|
|
|
if (arrow_type == GTK_ARROW_UP || arrow_type == GTK_ARROW_DOWN)
|
|
|
|
{
|
|
|
|
box_width = slider_width;
|
|
|
|
box_height = stepper_size;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
box_width = stepper_size;
|
|
|
|
box_height = slider_width;
|
|
|
|
}
|
|
|
|
|
|
|
|
*x = *x - (box_width - *width) / 2;
|
|
|
|
*y = *y - (box_height - *height) / 2;
|
|
|
|
*width = box_width;
|
|
|
|
*height = box_height;
|
|
|
|
}
|
|
|
|
|
2004-12-01 17:25:19 +00:00
|
|
|
static XpThemeElement to_xp_arrow(GtkArrowType arrow_type)
|
|
|
|
{
|
|
|
|
XpThemeElement xp_arrow;
|
|
|
|
|
|
|
|
switch (arrow_type)
|
|
|
|
{
|
|
|
|
case GTK_ARROW_UP:
|
|
|
|
xp_arrow = XP_THEME_ELEMENT_ARROW_UP;
|
|
|
|
break;
|
|
|
|
case GTK_ARROW_DOWN:
|
|
|
|
xp_arrow = XP_THEME_ELEMENT_ARROW_DOWN;
|
|
|
|
break;
|
|
|
|
case GTK_ARROW_LEFT:
|
|
|
|
xp_arrow = XP_THEME_ELEMENT_ARROW_LEFT;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
xp_arrow = XP_THEME_ELEMENT_ARROW_RIGHT;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return xp_arrow;
|
|
|
|
}
|
|
|
|
|
2003-04-15 18:31:55 +00:00
|
|
|
static void
|
|
|
|
draw_arrow (GtkStyle *style,
|
|
|
|
GdkWindow *window,
|
|
|
|
GtkStateType state,
|
|
|
|
GtkShadowType shadow,
|
|
|
|
GdkRectangle *area,
|
|
|
|
GtkWidget *widget,
|
|
|
|
const gchar *detail,
|
|
|
|
GtkArrowType arrow_type,
|
|
|
|
gboolean fill,
|
|
|
|
gint x,
|
|
|
|
gint y,
|
|
|
|
gint width,
|
|
|
|
gint height)
|
|
|
|
{
|
2003-08-29 21:00:14 +00:00
|
|
|
const gchar * name;
|
|
|
|
|
|
|
|
name = gtk_widget_get_name (widget);
|
|
|
|
|
2003-04-15 18:31:55 +00:00
|
|
|
sanitize_size (window, &width, &height);
|
2003-08-23 09:21:06 +00:00
|
|
|
|
2003-04-15 18:31:55 +00:00
|
|
|
if (detail && strcmp (detail, "spinbutton") == 0)
|
|
|
|
{
|
2003-08-05 19:34:17 +00:00
|
|
|
if (xp_theme_is_drawable(XP_THEME_ELEMENT_SPIN_BUTTON_UP))
|
2003-04-15 18:31:55 +00:00
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
x += (width - 7) / 2;
|
|
|
|
|
|
|
|
if (arrow_type == GTK_ARROW_UP)
|
|
|
|
y += (height - 4) / 2;
|
|
|
|
else
|
|
|
|
y += (1 + height - 4) / 2;
|
|
|
|
draw_varrow (window, style->fg_gc[state], shadow, area, arrow_type,
|
|
|
|
x, y, 7, 4);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (detail && (!strcmp (detail, "vscrollbar")
|
|
|
|
|| !strcmp (detail, "hscrollbar")))
|
|
|
|
{
|
2004-08-23 20:53:53 +00:00
|
|
|
gboolean is_disabled = FALSE;
|
|
|
|
GtkScrollbar * scrollbar = GTK_SCROLLBAR(widget);
|
2003-04-15 18:31:55 +00:00
|
|
|
gint box_x = x;
|
|
|
|
gint box_y = y;
|
|
|
|
gint box_width = width;
|
|
|
|
gint box_height = height;
|
2004-12-01 17:25:19 +00:00
|
|
|
|
2003-04-15 18:31:55 +00:00
|
|
|
reverse_engineer_stepper_box (widget, arrow_type,
|
|
|
|
&box_x, &box_y, &box_width, &box_height);
|
|
|
|
|
2004-08-23 20:53:53 +00:00
|
|
|
if (scrollbar->range.adjustment->page_size >= (scrollbar->range.adjustment->upper-scrollbar->range.adjustment->lower))
|
|
|
|
is_disabled = TRUE;
|
|
|
|
|
2004-12-01 17:25:19 +00:00
|
|
|
if (xp_theme_draw(window, to_xp_arrow(arrow_type), style, box_x, box_y, box_width, box_height, state, area))
|
2003-04-15 18:31:55 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
else if (arrow_type == GTK_ARROW_UP || arrow_type == GTK_ARROW_DOWN)
|
|
|
|
{
|
|
|
|
x += (width - 7) / 2;
|
|
|
|
y += (height - 5) / 2;
|
|
|
|
|
2004-08-23 20:53:53 +00:00
|
|
|
draw_varrow (window, is_disabled ? style->text_aa_gc[state] : style->fg_gc[state], shadow, area, arrow_type,
|
2003-04-15 18:31:55 +00:00
|
|
|
x, y, 7, 5);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
y += (height - 7) / 2;
|
|
|
|
x += (width - 5) / 2;
|
|
|
|
|
2004-08-23 20:53:53 +00:00
|
|
|
draw_harrow (window, is_disabled ? style->text_aa_gc[state] : style->fg_gc[state], shadow, area, arrow_type,
|
2003-04-15 18:31:55 +00:00
|
|
|
x, y, 5, 7);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2003-08-29 22:45:18 +00:00
|
|
|
/* draw the toolbar chevrons - waiting for GTK 2.4 */
|
2003-08-29 21:00:14 +00:00
|
|
|
if (name && !strcmp (name, "gtk-toolbar-arrow"))
|
|
|
|
{
|
2003-10-22 18:25:50 +00:00
|
|
|
if (xp_theme_draw(window, XP_THEME_ELEMENT_REBAR_CHEVRON, style, x, y, width, height, state, area))
|
2003-08-29 21:00:14 +00:00
|
|
|
return;
|
|
|
|
}
|
2004-12-01 17:25:19 +00:00
|
|
|
/* probably a gtk combo box on a toolbar */
|
2005-06-03 19:54:03 +00:00
|
|
|
else if (0 /*widget->parent && GTK_IS_BUTTON (widget->parent)*/)
|
2004-12-01 17:25:19 +00:00
|
|
|
{
|
|
|
|
if (xp_theme_draw(window, XP_THEME_ELEMENT_COMBOBUTTON, style, x-3, widget->allocation.y+1,
|
|
|
|
width+5, widget->allocation.height-4, state, area))
|
|
|
|
return;
|
|
|
|
}
|
2003-08-29 21:00:14 +00:00
|
|
|
|
2003-04-15 18:31:55 +00:00
|
|
|
if (arrow_type == GTK_ARROW_UP || arrow_type == GTK_ARROW_DOWN)
|
|
|
|
{
|
|
|
|
x += (width - 7) / 2;
|
|
|
|
y += (height - 5) / 2;
|
2003-08-23 09:21:06 +00:00
|
|
|
|
2003-04-15 18:31:55 +00:00
|
|
|
draw_varrow (window, style->fg_gc[state], shadow, area, arrow_type,
|
|
|
|
x, y, 7, 5);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
x += (width - 5) / 2;
|
|
|
|
y += (height - 7) / 2;
|
2003-08-23 09:21:06 +00:00
|
|
|
|
2003-04-15 18:31:55 +00:00
|
|
|
draw_harrow (window, style->fg_gc[state], shadow, area, arrow_type,
|
|
|
|
x, y, 5, 7);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
option_menu_get_props (GtkWidget *widget,
|
|
|
|
GtkRequisition *indicator_size,
|
|
|
|
GtkBorder *indicator_spacing)
|
|
|
|
{
|
|
|
|
GtkRequisition *tmp_size = NULL;
|
|
|
|
GtkBorder *tmp_spacing = NULL;
|
2003-08-23 09:21:06 +00:00
|
|
|
|
2003-04-15 18:31:55 +00:00
|
|
|
if (widget)
|
2003-08-23 09:21:06 +00:00
|
|
|
gtk_widget_style_get (widget,
|
2003-04-15 18:31:55 +00:00
|
|
|
"indicator_size", &tmp_size,
|
|
|
|
"indicator_spacing", &tmp_spacing,
|
|
|
|
NULL);
|
|
|
|
|
|
|
|
if (tmp_size)
|
|
|
|
{
|
|
|
|
*indicator_size = *tmp_size;
|
|
|
|
g_free (tmp_size);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
*indicator_size = default_option_indicator_size;
|
|
|
|
|
|
|
|
if (tmp_spacing)
|
|
|
|
{
|
|
|
|
*indicator_spacing = *tmp_spacing;
|
|
|
|
g_free (tmp_spacing);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
*indicator_spacing = default_option_indicator_spacing;
|
|
|
|
}
|
|
|
|
|
2004-05-21 21:01:55 +00:00
|
|
|
static gboolean is_toolbar_child(GtkWidget * wid)
|
|
|
|
{
|
|
|
|
while(wid)
|
|
|
|
{
|
2004-06-02 19:53:55 +00:00
|
|
|
if(GTK_IS_TOOLBAR(wid) || GTK_IS_HANDLE_BOX(wid))
|
2004-05-21 21:01:55 +00:00
|
|
|
return TRUE;
|
|
|
|
else
|
|
|
|
wid = wid->parent;
|
|
|
|
}
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2003-08-23 09:21:06 +00:00
|
|
|
static void
|
2003-04-15 18:31:55 +00:00
|
|
|
draw_box (GtkStyle *style,
|
|
|
|
GdkWindow *window,
|
|
|
|
GtkStateType state_type,
|
|
|
|
GtkShadowType shadow_type,
|
|
|
|
GdkRectangle *area,
|
|
|
|
GtkWidget *widget,
|
|
|
|
const gchar *detail,
|
|
|
|
gint x,
|
|
|
|
gint y,
|
|
|
|
gint width,
|
|
|
|
gint height)
|
|
|
|
{
|
|
|
|
if (detail &&
|
|
|
|
(!strcmp (detail, "button") ||
|
|
|
|
!strcmp (detail, "buttondefault")))
|
|
|
|
{
|
2003-08-05 19:34:17 +00:00
|
|
|
if (GTK_IS_TREE_VIEW (widget->parent) || GTK_IS_CLIST (widget->parent))
|
2003-04-15 18:31:55 +00:00
|
|
|
{
|
2003-08-05 19:34:17 +00:00
|
|
|
if (xp_theme_draw(window, XP_THEME_ELEMENT_LIST_HEADER, style, x, y,
|
2003-09-15 14:02:23 +00:00
|
|
|
width, height, state_type, area))
|
2003-08-05 19:34:17 +00:00
|
|
|
return;
|
|
|
|
}
|
2004-05-21 21:01:55 +00:00
|
|
|
else if (is_toolbar_child (widget->parent))
|
2003-12-30 17:22:30 +00:00
|
|
|
{
|
|
|
|
if (xp_theme_draw(window, XP_THEME_ELEMENT_TOOLBAR_BUTTON, style, x, y,
|
|
|
|
width, height, state_type, area))
|
|
|
|
return;
|
|
|
|
}
|
2003-08-05 19:34:17 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
gboolean is_default = !strcmp (detail, "buttondefault");
|
|
|
|
if (xp_theme_draw(window, is_default ? XP_THEME_ELEMENT_DEFAULT_BUTTON
|
|
|
|
: XP_THEME_ELEMENT_BUTTON, style, x, y,
|
2003-09-15 14:02:23 +00:00
|
|
|
width, height, state_type, area))
|
2003-08-05 19:34:17 +00:00
|
|
|
return;
|
2003-04-15 18:31:55 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (detail && !strcmp (detail, "spinbutton"))
|
|
|
|
{
|
2003-08-05 19:34:17 +00:00
|
|
|
if (xp_theme_is_drawable(XP_THEME_ELEMENT_SPIN_BUTTON_UP))
|
2003-04-15 18:31:55 +00:00
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (detail && (!strcmp (detail, "spinbutton_up")
|
|
|
|
|| !strcmp (detail, "spinbutton_down")))
|
|
|
|
{
|
2003-08-23 09:21:06 +00:00
|
|
|
if (xp_theme_draw(window,
|
2003-08-05 19:34:17 +00:00
|
|
|
(! strcmp (detail, "spinbutton_up"))
|
|
|
|
? XP_THEME_ELEMENT_SPIN_BUTTON_UP
|
|
|
|
: XP_THEME_ELEMENT_SPIN_BUTTON_DOWN,
|
2003-09-15 14:02:23 +00:00
|
|
|
style, x, y, width, height, state_type, area))
|
2003-04-15 18:31:55 +00:00
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (detail && !strcmp (detail, "slider"))
|
|
|
|
{
|
|
|
|
if (GTK_IS_SCROLLBAR(widget))
|
|
|
|
{
|
|
|
|
GtkScrollbar * scrollbar = GTK_SCROLLBAR(widget);
|
2003-10-20 17:38:53 +00:00
|
|
|
gboolean is_v = GTK_IS_VSCROLLBAR(widget);
|
2005-07-28 12:24:25 +00:00
|
|
|
|
2003-08-23 09:21:06 +00:00
|
|
|
if (xp_theme_draw(window,
|
2003-10-20 17:38:53 +00:00
|
|
|
is_v
|
2003-08-05 19:34:17 +00:00
|
|
|
? XP_THEME_ELEMENT_SCROLLBAR_V
|
|
|
|
: XP_THEME_ELEMENT_SCROLLBAR_H,
|
2003-09-15 14:02:23 +00:00
|
|
|
style, x, y, width, height, state_type, area))
|
2003-04-15 18:31:55 +00:00
|
|
|
{
|
2003-11-04 21:59:26 +00:00
|
|
|
XpThemeElement gripper = (is_v ? XP_THEME_ELEMENT_SCROLLBAR_GRIPPER_V : XP_THEME_ELEMENT_SCROLLBAR_GRIPPER_H);
|
|
|
|
|
|
|
|
/* Do not display grippers on tiny scroll bars, the limit imposed
|
|
|
|
is rather arbitrary, perhaps we can fetch the gripper geometry
|
|
|
|
from somewhere and use that... */
|
|
|
|
if ((gripper == XP_THEME_ELEMENT_SCROLLBAR_GRIPPER_H && width < 16)
|
|
|
|
|| (gripper == XP_THEME_ELEMENT_SCROLLBAR_GRIPPER_V && height < 16))
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
xp_theme_draw(window, gripper, style, x, y, width, height, state_type, area);
|
2003-04-15 18:31:55 +00:00
|
|
|
return;
|
|
|
|
}
|
2004-08-23 20:53:53 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
if (scrollbar->range.adjustment->page_size >= (scrollbar->range.adjustment->upper-scrollbar->range.adjustment->lower))
|
|
|
|
return;
|
|
|
|
}
|
2003-04-15 18:31:55 +00:00
|
|
|
}
|
|
|
|
}
|
2003-08-06 20:05:39 +00:00
|
|
|
else if (detail && !strcmp (detail, "bar"))
|
|
|
|
{
|
|
|
|
if (widget && GTK_IS_PROGRESS_BAR (widget))
|
|
|
|
{
|
|
|
|
GtkProgressBar *progress_bar = GTK_PROGRESS_BAR(widget);
|
|
|
|
XpThemeElement xp_progress_bar = map_gtk_progress_bar_to_xp (progress_bar, FALSE);
|
|
|
|
if (xp_theme_draw (window, xp_progress_bar,
|
2003-09-15 14:02:23 +00:00
|
|
|
style, x, y, width, height, state_type, area))
|
2003-08-06 20:05:39 +00:00
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2003-10-21 18:51:29 +00:00
|
|
|
else if (detail && strcmp (detail, "menuitem") == 0) {
|
|
|
|
shadow_type = GTK_SHADOW_NONE;
|
2003-10-22 18:41:02 +00:00
|
|
|
if (xp_theme_draw (window, XP_THEME_ELEMENT_MENU_ITEM, style, x, y, width, height, state_type, area))
|
2003-08-26 21:53:30 +00:00
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2003-10-21 18:51:29 +00:00
|
|
|
else if (detail && !strcmp (detail, "trough"))
|
2003-04-15 18:31:55 +00:00
|
|
|
{
|
|
|
|
if (widget && GTK_IS_PROGRESS_BAR (widget))
|
|
|
|
{
|
2003-08-06 20:05:39 +00:00
|
|
|
GtkProgressBar *progress_bar = GTK_PROGRESS_BAR(widget);
|
|
|
|
XpThemeElement xp_progress_bar = map_gtk_progress_bar_to_xp (progress_bar, TRUE);
|
|
|
|
if (xp_theme_draw (window, xp_progress_bar,
|
2003-09-15 14:02:23 +00:00
|
|
|
style, x, y, width, height, state_type, area))
|
2003-08-06 20:05:39 +00:00
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2003-08-23 09:21:06 +00:00
|
|
|
/* Blank in classic Windows */
|
2003-08-06 20:05:39 +00:00
|
|
|
}
|
2003-04-15 18:31:55 +00:00
|
|
|
}
|
2003-12-30 16:44:40 +00:00
|
|
|
else if (widget && GTK_IS_SCROLLBAR(widget))
|
2003-04-15 18:31:55 +00:00
|
|
|
{
|
2003-08-05 19:34:17 +00:00
|
|
|
gboolean is_vertical = GTK_IS_VSCROLLBAR(widget);
|
2003-08-23 09:21:06 +00:00
|
|
|
|
2005-07-28 12:24:25 +00:00
|
|
|
if (xp_theme_draw(window,
|
2003-08-05 19:34:17 +00:00
|
|
|
is_vertical
|
|
|
|
? XP_THEME_ELEMENT_TROUGH_V
|
|
|
|
: XP_THEME_ELEMENT_TROUGH_H,
|
|
|
|
style,
|
2003-09-15 14:02:23 +00:00
|
|
|
x, y, width, height, state_type, area))
|
2003-04-15 18:31:55 +00:00
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
GdkGCValues gc_values;
|
|
|
|
GdkGC *gc;
|
|
|
|
GdkPixmap *pixmap;
|
|
|
|
|
|
|
|
sanitize_size (window, &width, &height);
|
2003-08-23 09:21:06 +00:00
|
|
|
|
2003-04-15 18:31:55 +00:00
|
|
|
pixmap = gdk_pixmap_new (window, 2, 2, -1);
|
|
|
|
|
|
|
|
gdk_draw_point (pixmap, style->bg_gc[GTK_STATE_NORMAL], 0, 0);
|
|
|
|
gdk_draw_point (pixmap, style->bg_gc[GTK_STATE_NORMAL], 1, 1);
|
|
|
|
gdk_draw_point (pixmap, style->light_gc[GTK_STATE_NORMAL], 1, 0);
|
|
|
|
gdk_draw_point (pixmap, style->light_gc[GTK_STATE_NORMAL], 0, 1);
|
|
|
|
|
|
|
|
gc_values.fill = GDK_TILED;
|
|
|
|
gc_values.tile = pixmap;
|
|
|
|
gc_values.ts_x_origin = x;
|
|
|
|
gc_values.ts_y_origin = y;
|
|
|
|
gc = gdk_gc_new_with_values (window, &gc_values,
|
|
|
|
GDK_GC_TS_X_ORIGIN | GDK_GC_TS_Y_ORIGIN | GDK_GC_FILL | GDK_GC_TILE);
|
|
|
|
|
|
|
|
if (area)
|
|
|
|
gdk_gc_set_clip_rectangle (gc, area);
|
2003-08-23 09:21:06 +00:00
|
|
|
|
2003-04-15 18:31:55 +00:00
|
|
|
gdk_draw_rectangle (window, gc, TRUE, x, y, width, height);
|
|
|
|
|
2005-03-20 23:10:14 +00:00
|
|
|
g_object_unref (gc);
|
|
|
|
g_object_unref (pixmap);
|
2003-08-23 09:21:06 +00:00
|
|
|
|
2003-04-15 18:31:55 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2003-12-30 16:44:40 +00:00
|
|
|
else if (widget && GTK_IS_SCALE(widget))
|
|
|
|
{
|
|
|
|
gboolean is_vertical = GTK_IS_VSCALE(widget);
|
2003-12-30 17:22:30 +00:00
|
|
|
|
2005-07-28 12:24:25 +00:00
|
|
|
if(!xp_theme_is_active ()) {
|
|
|
|
parent_class->draw_box (style, window, state_type, GTK_SHADOW_NONE, area,
|
2003-12-30 16:44:40 +00:00
|
|
|
widget, detail, x, y, width, height);
|
2005-07-28 12:24:25 +00:00
|
|
|
}
|
2003-12-30 17:22:30 +00:00
|
|
|
|
2005-07-28 12:24:25 +00:00
|
|
|
if(is_vertical) {
|
|
|
|
if(xp_theme_draw(window, XP_THEME_ELEMENT_SCALE_TROUGH_V, style, (2 * x + width)/2, y, 2, height, state_type, area))
|
|
|
|
return;
|
|
|
|
|
|
|
|
parent_class->draw_box(style, window, state_type, GTK_SHADOW_ETCHED_IN, area, NULL, NULL, (2 * x + width)/2, y, 1, height);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
if(xp_theme_draw(window, XP_THEME_ELEMENT_SCALE_TROUGH_H, style, x, (2 * y + height)/2, width, 2, state_type, area))
|
|
|
|
return;
|
2003-12-30 17:22:30 +00:00
|
|
|
|
2005-07-28 12:24:25 +00:00
|
|
|
parent_class->draw_box(style, window, state_type, GTK_SHADOW_ETCHED_IN, area, NULL, NULL, x, (2 * y + height)/2, width, 1);
|
|
|
|
}
|
2003-12-30 16:44:40 +00:00
|
|
|
return;
|
|
|
|
}
|
2003-04-15 18:31:55 +00:00
|
|
|
}
|
2003-08-05 19:34:17 +00:00
|
|
|
else if (detail && strcmp (detail, "optionmenu") == 0)
|
|
|
|
{
|
|
|
|
if (xp_theme_draw(window, XP_THEME_ELEMENT_EDIT_TEXT,
|
2003-09-15 14:02:23 +00:00
|
|
|
style, x, y, width, height, state_type, area))
|
2003-08-05 19:34:17 +00:00
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2003-11-05 15:10:27 +00:00
|
|
|
else if (detail && (strcmp (detail, "vscrollbar") == 0 || strcmp (detail, "hscrollbar") == 0))
|
2005-07-28 12:24:25 +00:00
|
|
|
{
|
|
|
|
GtkScrollbar * scrollbar = GTK_SCROLLBAR(widget);
|
|
|
|
if (shadow_type == GTK_SHADOW_IN)
|
|
|
|
shadow_type = GTK_SHADOW_ETCHED_IN;
|
|
|
|
if (scrollbar->range.adjustment->page_size >= (scrollbar->range.adjustment->upper-scrollbar->range.adjustment->lower))
|
|
|
|
shadow_type = GTK_SHADOW_OUT;
|
|
|
|
}
|
|
|
|
else if (detail && (strcmp (detail, "handlebox_bin") == 0 || strcmp (detail, "toolbar") == 0 ||
|
|
|
|
strcmp (detail, "menubar") == 0))
|
|
|
|
{
|
2005-06-03 19:54:03 +00:00
|
|
|
if (xp_theme_draw(window, XP_THEME_ELEMENT_REBAR,
|
|
|
|
style, x, y, width, height, state_type, area))
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
2005-07-28 12:24:25 +00:00
|
|
|
}
|
|
|
|
else if (detail &&
|
|
|
|
(!strcmp(detail, "handlebox"))) /* grip */
|
2005-06-04 20:19:36 +00:00
|
|
|
{
|
|
|
|
}
|
2005-07-28 12:24:25 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
const gchar * name = gtk_widget_get_name (widget);
|
|
|
|
|
|
|
|
if (name && !strcmp (name, "gtk-tooltips")) {
|
|
|
|
if (xp_theme_draw (window, XP_THEME_ELEMENT_TOOLTIP, style, x, y, width, height, state_type, area))
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
HBRUSH brush;
|
|
|
|
gint xoff, yoff;
|
|
|
|
GdkDrawable *drawable;
|
|
|
|
RECT rect;
|
|
|
|
HDC hdc;
|
|
|
|
|
|
|
|
if (!GDK_IS_WINDOW(window))
|
|
|
|
{
|
|
|
|
xoff = 0;
|
|
|
|
yoff = 0;
|
|
|
|
drawable = window;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
gdk_window_get_internal_paint_info(window, &drawable, &xoff, &yoff);
|
|
|
|
}
|
|
|
|
|
|
|
|
rect.left = x - xoff;
|
|
|
|
rect.top = y - yoff;
|
|
|
|
rect.right = rect.left + width;
|
|
|
|
rect.bottom = rect.top + height;
|
|
|
|
|
|
|
|
hdc = gdk_win32_hdc_get(window, style->dark_gc[state_type], 0);
|
|
|
|
brush = GetSysColorBrush(COLOR_3DDKSHADOW);
|
|
|
|
if (brush)
|
|
|
|
FrameRect(hdc, &rect, brush);
|
|
|
|
InflateRect(&rect, -1, -1);
|
|
|
|
FillRect(hdc, &rect, (HBRUSH) (COLOR_INFOBK+1));
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
2003-04-15 18:31:55 +00:00
|
|
|
|
|
|
|
parent_class->draw_box (style, window, state_type, shadow_type, area,
|
|
|
|
widget, detail, x, y, width, height);
|
|
|
|
|
|
|
|
if (detail && strcmp (detail, "optionmenu") == 0)
|
|
|
|
{
|
|
|
|
GtkRequisition indicator_size;
|
|
|
|
GtkBorder indicator_spacing;
|
|
|
|
gint vline_x;
|
|
|
|
|
|
|
|
option_menu_get_props (widget, &indicator_size, &indicator_spacing);
|
|
|
|
|
|
|
|
sanitize_size (window, &width, &height);
|
2003-08-23 09:21:06 +00:00
|
|
|
|
2003-04-15 18:31:55 +00:00
|
|
|
if (gtk_widget_get_direction (widget) == GTK_TEXT_DIR_RTL)
|
|
|
|
vline_x = x + indicator_size.width + indicator_spacing.left + indicator_spacing.right;
|
2003-08-23 09:21:06 +00:00
|
|
|
else
|
2003-04-15 18:31:55 +00:00
|
|
|
vline_x = x + width - (indicator_size.width + indicator_spacing.left + indicator_spacing.right) - style->xthickness;
|
|
|
|
|
|
|
|
parent_class->draw_vline (style, window, state_type, area, widget,
|
|
|
|
detail,
|
|
|
|
y + style->ythickness + 1,
|
|
|
|
y + height - style->ythickness - 3,
|
|
|
|
vline_x);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
draw_tab (GtkStyle *style,
|
|
|
|
GdkWindow *window,
|
|
|
|
GtkStateType state,
|
|
|
|
GtkShadowType shadow,
|
|
|
|
GdkRectangle *area,
|
|
|
|
GtkWidget *widget,
|
|
|
|
const gchar *detail,
|
|
|
|
gint x,
|
|
|
|
gint y,
|
|
|
|
gint width,
|
|
|
|
gint height)
|
|
|
|
{
|
|
|
|
GtkRequisition indicator_size;
|
|
|
|
GtkBorder indicator_spacing;
|
2003-08-23 09:21:06 +00:00
|
|
|
|
2003-04-15 18:31:55 +00:00
|
|
|
gint arrow_height;
|
2003-08-23 09:21:06 +00:00
|
|
|
|
2003-04-15 18:31:55 +00:00
|
|
|
g_return_if_fail (style != NULL);
|
|
|
|
g_return_if_fail (window != NULL);
|
|
|
|
|
2003-08-05 19:34:17 +00:00
|
|
|
if (detail && ! strcmp (detail, "optionmenutab"))
|
2003-04-15 18:31:55 +00:00
|
|
|
{
|
2003-08-05 19:34:17 +00:00
|
|
|
if (xp_theme_draw(window, XP_THEME_ELEMENT_COMBOBUTTON,
|
|
|
|
style, x-5, widget->allocation.y+1,
|
2003-09-15 14:02:23 +00:00
|
|
|
width+10, widget->allocation.height-2, state, area))
|
2003-04-15 18:31:55 +00:00
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2003-08-05 19:34:17 +00:00
|
|
|
|
|
|
|
if (widget)
|
|
|
|
gtk_widget_style_get (widget, "indicator_size", &indicator_size, NULL);
|
|
|
|
|
2003-04-15 18:31:55 +00:00
|
|
|
option_menu_get_props (widget, &indicator_size, &indicator_spacing);
|
|
|
|
|
|
|
|
x += (width - indicator_size.width) / 2;
|
|
|
|
arrow_height = (indicator_size.width + 1) / 2;
|
2003-08-23 09:21:06 +00:00
|
|
|
|
2003-04-15 18:31:55 +00:00
|
|
|
y += (height - arrow_height) / 2;
|
|
|
|
|
|
|
|
draw_varrow (window, style->black_gc, shadow, area, GTK_ARROW_DOWN,
|
|
|
|
x, y, indicator_size.width, arrow_height);
|
|
|
|
}
|
|
|
|
|
2003-08-26 21:53:30 +00:00
|
|
|
/* this is an undefined magic value that, according to the mozilla folks,
|
2003-09-08 13:53:25 +00:00
|
|
|
worked for all the various themes that they tried */
|
2003-08-26 21:53:30 +00:00
|
|
|
#define XP_EDGE_SIZE 2
|
|
|
|
|
2003-04-15 18:31:55 +00:00
|
|
|
static void
|
|
|
|
draw_extension(GtkStyle *style,
|
|
|
|
GdkWindow *window,
|
|
|
|
GtkStateType state_type,
|
|
|
|
GtkShadowType shadow_type,
|
|
|
|
GdkRectangle *area,
|
|
|
|
GtkWidget *widget,
|
|
|
|
const gchar *detail,
|
|
|
|
gint x,
|
|
|
|
gint y,
|
|
|
|
gint width,
|
|
|
|
gint height,
|
|
|
|
GtkPositionType gap_side)
|
|
|
|
{
|
2005-09-15 22:14:03 +00:00
|
|
|
if (GTK_IS_NOTEBOOK(widget) && detail && !strcmp(detail, "tab"))
|
2003-04-15 18:31:55 +00:00
|
|
|
{
|
|
|
|
GtkNotebook *notebook = GTK_NOTEBOOK(widget);
|
2005-09-15 22:14:03 +00:00
|
|
|
gint x2, y2, w2, h2;
|
2003-08-26 21:53:30 +00:00
|
|
|
|
2005-09-15 22:14:03 +00:00
|
|
|
x2 = x; y2 = y; w2 = width; h2 = height;
|
|
|
|
if (gap_side == GTK_POS_TOP && state_type == GTK_STATE_NORMAL) {
|
2005-07-28 12:24:25 +00:00
|
|
|
/*h2 += XP_EDGE_SIZE;*/
|
|
|
|
}
|
2005-09-15 22:14:03 +00:00
|
|
|
else if (gap_side == GTK_POS_BOTTOM && state_type == GTK_STATE_NORMAL) {
|
2005-07-28 12:24:25 +00:00
|
|
|
/*h2 += XP_EDGE_SIZE;*/
|
|
|
|
}
|
2005-09-15 22:14:03 +00:00
|
|
|
else if (gap_side == GTK_POS_LEFT && state_type == GTK_STATE_NORMAL) {
|
2005-07-28 12:24:25 +00:00
|
|
|
x2 += 1;
|
|
|
|
w2 -= XP_EDGE_SIZE;
|
|
|
|
}
|
2005-09-15 22:14:03 +00:00
|
|
|
else if (gap_side == GTK_POS_RIGHT && state_type == GTK_STATE_NORMAL) {
|
2005-07-28 12:24:25 +00:00
|
|
|
w2 -= (XP_EDGE_SIZE + 1);
|
|
|
|
}
|
2003-08-26 21:53:30 +00:00
|
|
|
|
2005-07-28 12:24:25 +00:00
|
|
|
if (xp_theme_draw
|
2003-10-07 18:56:57 +00:00
|
|
|
(window, gtk_notebook_get_current_page(notebook)==0
|
|
|
|
? XP_THEME_ELEMENT_TAB_ITEM_LEFT_EDGE
|
|
|
|
: XP_THEME_ELEMENT_TAB_ITEM,
|
2005-07-28 12:24:25 +00:00
|
|
|
style, x2, y2, w2, h2, state_type, area))
|
2003-04-15 18:31:55 +00:00
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2003-08-23 09:21:06 +00:00
|
|
|
parent_class->draw_extension
|
2003-04-15 18:31:55 +00:00
|
|
|
(style, window, state_type, shadow_type, area, widget, detail,
|
|
|
|
x, y, width, height, gap_side);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
draw_box_gap (GtkStyle *style, GdkWindow *window, GtkStateType state_type,
|
|
|
|
GtkShadowType shadow_type, GdkRectangle *area,
|
|
|
|
GtkWidget *widget, const gchar *detail, gint x,
|
|
|
|
gint y, gint width, gint height, GtkPositionType gap_side,
|
|
|
|
gint gap_x, gint gap_width)
|
|
|
|
{
|
2005-09-15 22:14:03 +00:00
|
|
|
if (GTK_IS_NOTEBOOK(widget) && detail && !strcmp(detail, "notebook"))
|
2003-04-15 18:31:55 +00:00
|
|
|
{
|
2003-09-15 14:02:23 +00:00
|
|
|
/* FIXME: pos != TOP to be implemented */
|
2005-09-15 22:14:03 +00:00
|
|
|
if (gap_side == GTK_POS_TOP && xp_theme_draw(window, XP_THEME_ELEMENT_TAB_PANE, style, x, y, width, height,
|
2003-09-15 14:02:23 +00:00
|
|
|
state_type, area))
|
2003-04-15 18:31:55 +00:00
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
parent_class->draw_box_gap(style, window, state_type, shadow_type,
|
|
|
|
area, widget, detail, x, y, width, height,
|
|
|
|
gap_side, gap_x, gap_width);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
draw_flat_box (GtkStyle *style, GdkWindow *window,
|
|
|
|
GtkStateType state_type, GtkShadowType shadow_type,
|
|
|
|
GdkRectangle *area, GtkWidget *widget,
|
|
|
|
const gchar *detail, gint x, gint y,
|
|
|
|
gint width, gint height)
|
|
|
|
{
|
|
|
|
if (detail && ! strcmp (detail, "checkbutton"))
|
|
|
|
{
|
|
|
|
if (state_type == GTK_STATE_PRELIGHT)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
parent_class->draw_flat_box(style, window, state_type, shadow_type,
|
|
|
|
area, widget, detail, x, y, width, height);
|
|
|
|
}
|
|
|
|
|
2003-08-05 19:55:33 +00:00
|
|
|
static void
|
|
|
|
draw_shadow (GtkStyle *style,
|
|
|
|
GdkWindow *window,
|
|
|
|
GtkStateType state_type,
|
|
|
|
GtkShadowType shadow_type,
|
|
|
|
GdkRectangle *area,
|
|
|
|
GtkWidget *widget,
|
|
|
|
const gchar *detail,
|
|
|
|
gint x,
|
|
|
|
gint y,
|
|
|
|
gint width,
|
|
|
|
gint height)
|
|
|
|
{
|
|
|
|
if(detail && ! strcmp(detail, "entry"))
|
|
|
|
{
|
|
|
|
if (xp_theme_draw(window, XP_THEME_ELEMENT_EDIT_TEXT, style,
|
2003-09-15 14:02:23 +00:00
|
|
|
x, y, width, height, state_type, area))
|
2003-08-05 19:55:33 +00:00
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
parent_class->draw_shadow (style, window, state_type, shadow_type, area, widget,
|
|
|
|
detail, x, y, width, height);
|
|
|
|
}
|
|
|
|
|
2003-08-26 21:53:30 +00:00
|
|
|
static void
|
|
|
|
draw_hline (GtkStyle *style,
|
|
|
|
GdkWindow *window,
|
|
|
|
GtkStateType state_type,
|
|
|
|
GdkRectangle *area,
|
|
|
|
GtkWidget *widget,
|
|
|
|
const gchar *detail,
|
|
|
|
gint x1,
|
|
|
|
gint x2,
|
|
|
|
gint y)
|
|
|
|
{
|
2005-07-28 12:24:25 +00:00
|
|
|
#if 0
|
2003-10-21 18:51:29 +00:00
|
|
|
if (detail && !strcmp(detail, "menuitem")) {
|
|
|
|
if (xp_theme_draw(window, XP_THEME_ELEMENT_MENU_SEPARATOR, style,
|
|
|
|
x1, y, x2, style->ythickness, state_type, area)) {
|
|
|
|
return;
|
|
|
|
}
|
2005-07-28 12:24:25 +00:00
|
|
|
} else if (detail && !strcmp(detail, "toolbar")) {
|
|
|
|
if (xp_theme_draw(window, XP_THEME_ELEMENT_TOOLBAR_SEPARATOR_H, style,
|
|
|
|
x1, y, x2, style->ythickness, state_type, area)) {
|
|
|
|
return;
|
|
|
|
}
|
2003-10-21 18:51:29 +00:00
|
|
|
}
|
2004-01-20 21:46:59 +00:00
|
|
|
|
2005-07-28 12:24:25 +00:00
|
|
|
if(xp_theme_draw(window, XP_THEME_ELEMENT_LINE_H, style, x1, y, x2, style->ythickness, state_type, area))
|
|
|
|
return;
|
|
|
|
#endif
|
|
|
|
|
2004-01-20 21:46:59 +00:00
|
|
|
parent_class->draw_hline (style, window, state_type, area, widget,
|
|
|
|
detail, x1, x2, y);
|
2003-08-26 21:53:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
draw_vline (GtkStyle *style,
|
|
|
|
GdkWindow *window,
|
|
|
|
GtkStateType state_type,
|
|
|
|
GdkRectangle *area,
|
|
|
|
GtkWidget *widget,
|
|
|
|
const gchar *detail,
|
|
|
|
gint y1,
|
|
|
|
gint y2,
|
|
|
|
gint x)
|
|
|
|
{
|
2005-07-28 12:24:25 +00:00
|
|
|
#if 0
|
|
|
|
if (detail && !strcmp(detail, "toolbar")) {
|
|
|
|
if (xp_theme_draw(window, XP_THEME_ELEMENT_TOOLBAR_SEPARATOR_V, style,
|
|
|
|
x, y1, style->xthickness, y2, state_type, area)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if(xp_theme_draw(window, XP_THEME_ELEMENT_LINE_V, style, x, y1, style->xthickness, y2, state_type, area))
|
|
|
|
return;
|
|
|
|
#endif
|
|
|
|
|
2004-01-20 21:46:59 +00:00
|
|
|
parent_class->draw_vline (style, window, state_type, area, widget,
|
|
|
|
detail, y1, y2, x);
|
2003-08-26 21:53:30 +00:00
|
|
|
}
|
|
|
|
|
2005-07-28 12:24:25 +00:00
|
|
|
static void
|
|
|
|
draw_slider (GtkStyle *style,
|
|
|
|
GdkWindow *window,
|
|
|
|
GtkStateType state_type,
|
|
|
|
GtkShadowType shadow_type,
|
|
|
|
GdkRectangle *area,
|
|
|
|
GtkWidget *widget,
|
|
|
|
const gchar *detail,
|
|
|
|
gint x,
|
|
|
|
gint y,
|
|
|
|
gint width,
|
|
|
|
gint height,
|
|
|
|
GtkOrientation orientation)
|
|
|
|
{
|
|
|
|
if(GTK_IS_SCALE(widget) &&
|
|
|
|
xp_theme_draw(window, ((orientation == GTK_ORIENTATION_VERTICAL) ? XP_THEME_ELEMENT_SCALE_SLIDER_V : XP_THEME_ELEMENT_SCALE_SLIDER_H), style, x, y, width, height, state_type, area)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
parent_class->draw_slider (style, window, state_type, shadow_type, area, widget,
|
|
|
|
detail, x, y, width, height, orientation);
|
|
|
|
}
|
|
|
|
|
2003-10-21 18:51:29 +00:00
|
|
|
static void
|
|
|
|
draw_resize_grip (GtkStyle *style,
|
|
|
|
GdkWindow *window,
|
|
|
|
GtkStateType state_type,
|
|
|
|
GdkRectangle *area,
|
|
|
|
GtkWidget *widget,
|
|
|
|
const gchar *detail,
|
|
|
|
GdkWindowEdge edge,
|
|
|
|
gint x,
|
|
|
|
gint y,
|
|
|
|
gint width,
|
|
|
|
gint height)
|
|
|
|
{
|
|
|
|
if (detail && !strcmp(detail, "statusbar")) {
|
2004-12-01 16:13:06 +00:00
|
|
|
if (xp_theme_draw(window, XP_THEME_ELEMENT_STATUS_GRIPPER, style, x, y, width, height,
|
2003-10-21 18:51:29 +00:00
|
|
|
state_type, area))
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
parent_class->draw_resize_grip (style, window, state_type, area,
|
|
|
|
widget, detail, edge, x, y, width, height);
|
|
|
|
}
|
|
|
|
|
2003-08-26 21:53:30 +00:00
|
|
|
static void
|
|
|
|
draw_handle (GtkStyle *style,
|
|
|
|
GdkWindow *window,
|
|
|
|
GtkStateType state_type,
|
|
|
|
GtkShadowType shadow_type,
|
|
|
|
GdkRectangle *area,
|
|
|
|
GtkWidget *widget,
|
|
|
|
const gchar *detail,
|
|
|
|
gint x,
|
|
|
|
gint y,
|
|
|
|
gint width,
|
|
|
|
gint height,
|
|
|
|
GtkOrientation orientation)
|
|
|
|
{
|
2004-12-01 16:13:06 +00:00
|
|
|
if (is_toolbar_child (widget))
|
2003-10-14 18:35:43 +00:00
|
|
|
{
|
2003-10-18 20:37:30 +00:00
|
|
|
XpThemeElement hndl;
|
|
|
|
|
|
|
|
sanitize_size (window, &width, &height);
|
2003-10-21 18:51:29 +00:00
|
|
|
|
2003-10-14 18:35:43 +00:00
|
|
|
if (orientation == GTK_ORIENTATION_VERTICAL)
|
2003-10-22 18:25:50 +00:00
|
|
|
hndl = XP_THEME_ELEMENT_REBAR_GRIPPER_V;
|
2003-10-14 18:35:43 +00:00
|
|
|
else
|
2003-10-22 18:25:50 +00:00
|
|
|
hndl = XP_THEME_ELEMENT_REBAR_GRIPPER_H;
|
2003-08-26 21:53:30 +00:00
|
|
|
|
2003-10-14 18:35:43 +00:00
|
|
|
if (xp_theme_draw (window, hndl, style, x, y, width, height,
|
|
|
|
state_type, area))
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
2005-07-28 12:24:25 +00:00
|
|
|
}
|
2004-08-13 17:07:17 +00:00
|
|
|
|
2005-07-28 12:24:25 +00:00
|
|
|
if (!GTK_IS_PANED(widget)) {
|
|
|
|
gint xthick, ythick;
|
|
|
|
GdkGC *light_gc, *dark_gc, *shadow_gc;
|
|
|
|
GdkRectangle dest;
|
2003-08-26 21:53:30 +00:00
|
|
|
|
2005-07-28 12:24:25 +00:00
|
|
|
sanitize_size (window, &width, &height);
|
|
|
|
|
|
|
|
gtk_paint_box(style, window, state_type, shadow_type, area, widget,
|
|
|
|
detail, x, y, width, height);
|
|
|
|
|
|
|
|
light_gc = style->light_gc[state_type];
|
|
|
|
dark_gc = style->dark_gc[state_type];
|
|
|
|
shadow_gc = style->mid_gc[state_type];
|
|
|
|
|
|
|
|
xthick = style->xthickness;
|
|
|
|
ythick = style->ythickness;
|
|
|
|
|
|
|
|
dest.x = x + xthick;
|
|
|
|
dest.y = y + ythick;
|
|
|
|
dest.width = width - (xthick * 2);
|
|
|
|
dest.height = height - (ythick * 2);
|
|
|
|
|
|
|
|
gdk_gc_set_clip_rectangle(light_gc, &dest);
|
|
|
|
gdk_gc_set_clip_rectangle(dark_gc, &dest);
|
|
|
|
gdk_gc_set_clip_rectangle(shadow_gc, &dest);
|
|
|
|
|
|
|
|
if (dest.width < dest.height)
|
2005-06-04 20:19:36 +00:00
|
|
|
{
|
2005-07-28 12:24:25 +00:00
|
|
|
gdk_draw_line(window, light_gc, dest.x, dest.y, dest.x, dest.height);
|
|
|
|
gdk_draw_line(window, dark_gc, dest.x + (dest.width / 2), dest.y, dest.x + (dest.width / 2), dest.height);
|
|
|
|
gdk_draw_line(window, shadow_gc, dest.x + dest.width, dest.y, dest.x + dest.width, dest.height);
|
2005-06-04 20:19:36 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2005-07-28 12:24:25 +00:00
|
|
|
|
|
|
|
gdk_draw_line(window, light_gc, dest.x, dest.y, dest.x + dest.width, dest.y);
|
|
|
|
gdk_draw_line(window, dark_gc, dest.x, dest.y + (dest.height / 2), dest.x + dest.width, dest.y + (dest.height / 2));
|
|
|
|
gdk_draw_line(window, shadow_gc, dest.x, dest.y + dest.height, dest.x + dest.width, dest.y + dest.height);
|
|
|
|
}
|
|
|
|
|
|
|
|
gdk_gc_set_clip_rectangle(shadow_gc, NULL);
|
|
|
|
gdk_gc_set_clip_rectangle(light_gc, NULL);
|
|
|
|
gdk_gc_set_clip_rectangle(dark_gc, NULL);
|
2005-06-04 20:19:36 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-04-15 18:31:55 +00:00
|
|
|
static void
|
2004-03-20 11:42:30 +00:00
|
|
|
msw_style_init_from_rc (GtkStyle * style, GtkRcStyle * rc_style)
|
2003-04-15 18:31:55 +00:00
|
|
|
{
|
|
|
|
setup_system_font (style);
|
2004-06-07 13:58:09 +00:00
|
|
|
setup_menu_settings (gtk_settings_get_default ());
|
2003-11-14 17:51:31 +00:00
|
|
|
setup_system_styles (style);
|
2003-04-15 18:31:55 +00:00
|
|
|
parent_class->init_from_rc(style, rc_style);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2004-03-20 11:42:30 +00:00
|
|
|
msw_style_class_init (MswStyleClass *klass)
|
2003-04-15 18:31:55 +00:00
|
|
|
{
|
|
|
|
GtkStyleClass *style_class = GTK_STYLE_CLASS (klass);
|
|
|
|
|
|
|
|
parent_class = g_type_class_peek_parent (klass);
|
|
|
|
|
2004-03-20 11:42:30 +00:00
|
|
|
style_class->init_from_rc = msw_style_init_from_rc;
|
2003-08-06 20:05:39 +00:00
|
|
|
style_class->draw_arrow = draw_arrow;
|
|
|
|
style_class->draw_box = draw_box;
|
|
|
|
style_class->draw_check = draw_check;
|
|
|
|
style_class->draw_option = draw_option;
|
|
|
|
style_class->draw_tab = draw_tab;
|
|
|
|
style_class->draw_flat_box = draw_flat_box;
|
|
|
|
style_class->draw_expander = draw_expander;
|
2003-04-15 18:31:55 +00:00
|
|
|
style_class->draw_extension = draw_extension;
|
|
|
|
style_class->draw_box_gap = draw_box_gap;
|
2003-08-05 19:55:33 +00:00
|
|
|
style_class->draw_shadow = draw_shadow;
|
2003-08-26 21:53:30 +00:00
|
|
|
style_class->draw_hline = draw_hline;
|
|
|
|
style_class->draw_vline = draw_vline;
|
|
|
|
style_class->draw_handle = draw_handle;
|
2003-10-21 18:51:29 +00:00
|
|
|
style_class->draw_resize_grip = draw_resize_grip;
|
2005-07-28 12:24:25 +00:00
|
|
|
style_class->draw_slider = draw_slider;
|
2003-04-15 18:31:55 +00:00
|
|
|
}
|
|
|
|
|
2004-03-20 11:42:30 +00:00
|
|
|
GType msw_type_style = 0;
|
2003-04-15 18:31:55 +00:00
|
|
|
|
|
|
|
void
|
2004-03-20 11:42:30 +00:00
|
|
|
msw_style_register_type (GTypeModule *module)
|
2003-04-15 18:31:55 +00:00
|
|
|
{
|
|
|
|
static const GTypeInfo object_info =
|
|
|
|
{
|
2004-03-20 11:42:30 +00:00
|
|
|
sizeof (MswStyleClass),
|
2003-04-15 18:31:55 +00:00
|
|
|
(GBaseInitFunc) NULL,
|
|
|
|
(GBaseFinalizeFunc) NULL,
|
2004-03-20 11:42:30 +00:00
|
|
|
(GClassInitFunc) msw_style_class_init,
|
2003-04-15 18:31:55 +00:00
|
|
|
NULL, /* class_finalize */
|
|
|
|
NULL, /* class_data */
|
2004-03-20 11:42:30 +00:00
|
|
|
sizeof (MswStyle),
|
2003-04-15 18:31:55 +00:00
|
|
|
0, /* n_preallocs */
|
2003-10-03 17:02:45 +00:00
|
|
|
(GInstanceInitFunc) NULL,
|
2003-04-15 18:31:55 +00:00
|
|
|
};
|
2003-08-23 09:21:06 +00:00
|
|
|
|
2004-03-20 11:42:30 +00:00
|
|
|
msw_type_style = g_type_module_register_type (module,
|
2003-04-15 18:31:55 +00:00
|
|
|
GTK_TYPE_STYLE,
|
2004-03-20 11:42:30 +00:00
|
|
|
"MswStyle",
|
2003-04-15 18:31:55 +00:00
|
|
|
&object_info, 0);
|
|
|
|
}
|
2003-10-03 17:02:45 +00:00
|
|
|
|
|
|
|
void
|
2004-03-20 11:42:30 +00:00
|
|
|
msw_style_init (void)
|
2003-10-03 17:02:45 +00:00
|
|
|
{
|
2003-10-07 18:56:57 +00:00
|
|
|
xp_theme_init ();
|
2004-03-20 11:42:30 +00:00
|
|
|
msw_style_setup_system_settings ();
|
|
|
|
setup_msw_rc_style ();
|
2003-10-06 16:38:53 +00:00
|
|
|
}
|