mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-15 22:02:49 -06:00
50 lines
1.1 KiB
C++
50 lines
1.1 KiB
C++
#include <DropGrid/DropGrid.h>
|
|
|
|
using namespace Upp;
|
|
|
|
struct App : public TopWindow {
|
|
DropGrid drop;
|
|
|
|
void Person() { PromptOK("Person!"); }
|
|
void Client() { PromptOK("Client!"); }
|
|
void Select() { PromptOK("Select!"); }
|
|
void List() { PromptOK(AsString(drop.GetKey())); }
|
|
|
|
App()
|
|
{
|
|
Sizeable().Zoomable();
|
|
SetRect(Size(600, 100));
|
|
Title("DropGrid");
|
|
|
|
drop.ClearButton();
|
|
drop.AddPlus(THISBACK(Action));
|
|
|
|
Add(drop.LeftPosZ(20, 350).TopPosZ(20, 19));
|
|
|
|
drop.AddColumn("ID");
|
|
drop.AddColumn("Value");
|
|
drop.AddColumn("Description");
|
|
|
|
drop.AddText("Add person", THISBACK(Person));
|
|
drop.AddText("Add client", THISBACK(Client)).Left().SetImage(GridImg::Append());
|
|
drop.AddSelect(THISBACK(Select)).Left();
|
|
|
|
for(int i = 0; i < 20; i++)
|
|
drop.Add(i, Format("Hello %d", i), Format("How are you mr Hello %d", i));
|
|
|
|
drop.Width(300);
|
|
drop.DisplayAll(0);
|
|
drop.ColorRows();
|
|
drop.SetDropLines(15);
|
|
drop.SetValueColumn(1);
|
|
drop.AddValueColumn(0).AddValueColumn(1);
|
|
drop <<= THISBACK(List);
|
|
}
|
|
|
|
typedef App CLASSNAME;
|
|
};
|
|
|
|
GUI_APP_MAIN
|
|
{
|
|
App().Run();
|
|
}
|