CtrlLib: DropChoice SetConvert

git-svn-id: svn://ultimatepp.org/upp/trunk@1565 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
cxl 2009-09-07 21:03:21 +00:00
parent a0cee06b5c
commit eb2b740e2b

View file

@ -170,6 +170,7 @@ public:
DropChoice& SetDisplay(const Display& d) { list.ColumnAt(0).SetDisplay(d); return *this; }
DropChoice& SetLineCy(int lcy) { list.SetLineCy(lcy); return *this; }
DropChoice& SetDisplay(const Display& d, int lcy) { SetDisplay(d); SetLineCy(lcy); return *this; }
DropChoice& SetConvert(const Convert& d) { list.ColumnAt(0).SetConvert(d); return *this; }
DropChoice& SetDropLines(int n) { list.SetDropLines(n); return *this; }
DropChoice& Appending() { appending = true; return *this; }
DropChoice& AlwaysDrop(bool e = true);
@ -233,6 +234,7 @@ public:
WithDropChoice& SetDisplay(const Display& d) { select.SetDisplay(d); return *this; }
WithDropChoice& SetLineCy(int lcy) { select.SetLineCy(lcy); return *this; }
WithDropChoice& SetDisplay(const Display& d, int lcy) { select.SetDisplay(d, lcy); return *this; }
WithDropChoice& SetConvert(const Convert& d) { select.SetConvert(d); return *this; }
WithDropChoice& AlwaysDrop(bool b = true) { select.AlwaysDrop(b); return *this; }
WithDropChoice& DropWidth(int w) { select.DropWidth(w); return *this; }