Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
gtk
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
1,126
Issues
1,126
List
Boards
Labels
Service Desk
Milestones
Merge Requests
151
Merge Requests
151
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
GNOME
gtk
Commits
badb53eb
Commit
badb53eb
authored
Aug 20, 2003
by
Raymond Penners
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make files & tree expanders
parent
55b0689a
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
80 additions
and
2 deletions
+80
-2
modules/engines/ms-windows/ChangeLog.old
modules/engines/ms-windows/ChangeLog.old
+7
-0
modules/engines/ms-windows/Makefile.msc
modules/engines/ms-windows/Makefile.msc
+71
-0
modules/engines/ms-windows/xp_theme.c
modules/engines/ms-windows/xp_theme.c
+2
-2
No files found.
modules/engines/ms-windows/ChangeLog.old
View file @
badb53eb
2003-08-20 Raymond Penners <raymond@dotsphinx.com>
* */Makefile.msc: Provided MS-VC++ make files.
* src/xp_theme.c: The open/close tree expander symbols were
accidentally switched. Fixed.
2003-08-11 Raymond Penners <raymond@dotsphinx.com>
* src/wimp_style.c: The menu background color now follows XP's
...
...
modules/engines/ms-windows/Makefile.msc
0 → 100755
View file @
badb53eb
# Makefile.msc -- Makefile for MS-VC++ (-*- makefile -*-)
#
# Copyright (C) 2003 Raymond Penners <raymond@dotsphinx.com>
#
# $Id$
!INCLUDE
../Makefile.msc.config
##
# Target
TARGET
=
libwimp.dll
OBJS
=
\
wimp_style.obj
\
wimp_theme_main.obj
\
wimp_rc_style.obj
\
xp_theme.obj
##
# GTK
#
GTK_CFLAGS
=
\
-I
$(GTK_DIR)
/include/gtk-2.0
\
-I
$(GTK_DIR)
/lib/gtk-2.0/include
\
-I
$(GTK_DIR)
/include/atk-1.0
\
-I
$(GTK_DIR)
/include/pango-1.0
\
-I
$(GTK_DIR)
/include/glib-2.0
\
-I
$(GTK_DIR)
/lib/glib-2.0/include
GTK_LDFLAGS
=
/libpath:
$(GTK_DIR)
/lib
GTK_LIBS
=
\
gtk-win32-2.0.lib
\
gdk-win32-2.0.lib
\
atk-1.0.lib
\
gdk_pixbuf-2.0.lib
\
pangowin32-1.0.lib
\
pango-1.0.lib
\
gobject-2.0.lib
\
gmodule-2.0.lib
\
glib-2.0.lib
\
intl.lib
\
iconv.lib
##
# WIN32
#
WIN32_LIBS
=
\
gdi32.lib
\
user32.lib
WIN32_CFLAGS
=
-I
"
$(SDK_DIR)
"
WIN32_LDFLAGS
=
/DLL /SUBSYSTEM:WINDOWS
##
# Target
#
LIBS
=
$(GTK_LIBS)
$(WIN32_LIBS)
CFLAGS
=
$(WIN32_CFLAGS)
$(GTK_CFLAGS)
LDFLAGS
=
$(WIN32_LDFLAGS)
$(GTK_LDFLAGS)
all
:
$(TARGET)
$(TARGET)
:
$(OBJS)
link
$(LDFLAGS)
$(LIBS)
/OUT:
$@
$(OBJS)
install
:
$(TARGET)
copy libwimp.dll
"
$(INSTALL_DIR)
"
clean
:
del
*
.obj
*
.dll
*
.exp
*
.lib
modules/engines/ms-windows/xp_theme.c
View file @
badb53eb
...
...
@@ -448,11 +448,11 @@ xp_theme_map_gtk_state(XpThemeElement element, GtkStateType state)
break
;
case
XP_THEME_ELEMENT_TREEVIEW_EXPANDER_OPENED
:
ret
=
GLPS_
CLOS
ED
;
ret
=
GLPS_
OPEN
ED
;
break
;
case
XP_THEME_ELEMENT_TREEVIEW_EXPANDER_CLOSED
:
ret
=
GLPS_
OPEN
ED
;
ret
=
GLPS_
CLOS
ED
;
break
;
case
XP_THEME_ELEMENT_PROGRESS_BAR_H
:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment