mirror of
https://gitea.nishi.boats/pyrite-dev/milsko
synced 2026-01-07 01:49:47 +00:00
git-svn-id: http://svn2.nishi.boats/svn/milsko/trunk@490 b9cfdab3-6d41-4d17-bbe4-086880011989
14 lines
249 B
C
14 lines
249 B
C
/* $Id$ */
|
|
#include <Mw/Milsko.h>
|
|
|
|
const char* MwDefaultBackground = "#ddd";
|
|
const char* MwDefaultForeground = "#000";
|
|
|
|
int MwGetDefaultBorderWidth(MwWidget handle) {
|
|
if(MwGetInteger(handle, MwNmodernLook)) {
|
|
return 1;
|
|
} else {
|
|
return 2;
|
|
}
|
|
}
|