* not all possible flags were shown due to a stupid bug...

* added B_SAME_POSITION_IN_ALL_WORKSPACES for the build under Haiku (and libbe_test)


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@15437 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler 2005-12-09 13:44:54 +00:00
parent aa203e8d5f
commit e62201bacd

View File

@ -119,9 +119,13 @@ Window::Window(BRect frame, window_look look, window_feel feel)
{"Not Vertically Resizable", B_NOT_V_RESIZABLE},
{"Outline Resize", B_OUTLINE_RESIZE},
{"Accept First Click", B_WILL_ACCEPT_FIRST_CLICK},
{"Not Anchored On Activate", B_NOT_ANCHORED_ON_ACTIVATE}
{"Not Anchored On Activate", B_NOT_ANCHORED_ON_ACTIVATE},
{"Avoid Front", B_AVOID_FRONT},
#if defined(__HAIKU__) || defined(HAIKU_TARGET_PLATFORM_LIBBE_TEST)
{"Same Position In All Workspaces", B_SAME_POSITION_IN_ALL_WORKSPACES},
#endif
};
for (uint32 i = 0; i < sizeof(looks) / sizeof(looks[0]); i++) {
for (uint32 i = 0; i < sizeof(flags) / sizeof(flags[0]); i++) {
BMessage* message = new BMessage(kMsgUpdateFlags);
message->AddInt32("flag", flags[i].flag);
BMenuItem* item = new BMenuItem(flags[i].name, message);