SHARE
TWEET

Untitled

a guest Jul 9th, 2012 26 Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. class MyPanel : public BFilePanel {
  2. public:
  3.         MyPanel ()
  4.         : BFilePanel (B_SAVE_PANEL, NULL, NULL, 0, false, NULL, NULL, true, true)
  5.         {
  6.                 auto popup = new BPopUpMenu("TYPE");
  7.                 popup->AddItem(new BMenuItem("one", new BMessage(1)));
  8.                 popup->AddItem(new BMenuItem("two", new BMessage(2)));
  9.                 popup->AddItem(new BMenuItem("three", new BMessage(3)));
  10.                 popup->ItemAt(2)->SetMarked(true);
  11.                 auto menu = new BMenuField(BRect(150, 30, 240, 60), "menu", "label", popup);
  12.                 Window()->AddChild(menu);
  13.         }
  14. };
RAW Paste Data
We use cookies for various purposes including analytics. By continuing to use Pastebin, you agree to our use of cookies as described in the Cookies Policy. OK, I Understand
Not a member of Pastebin yet?
Sign Up, it unlocks many cool features!
 
Top