bright-gpu-74537
08/18/2021, 7:25 AMbright-gpu-74537
08/18/2021, 7:35 AMbright-gpu-74537
08/18/2021, 7:35 AMhaxe
if (kind == null) {
kind = ItemKind.ITEM_NORMAL;
}
var str = WxString.fromUTF8(text);
var str2 = WxString.fromUTF8("");
_ref = WxMenuItem.createInstance(parent.menuRef.get_raw(), id, str, str2, kind).reinterpret();user
08/18/2021, 7:47 AMuser
08/18/2021, 8:03 PM./src/hx/widgets/PlatformInfo.cpp: In member function ‘String hx::widgets::PlatformInfo_obj::get_archName()’:
./src/hx/widgets/PlatformInfo.cpp:77:67: warning: ‘wxString wxPlatformInfo::GetArchName() const’ is deprecated: Use GetBitnessName() instead [-Wdeprecated-declarations]
77 | HXLINE( 32) wxString r = this->_ref->ptr->GetArchName();
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~
In file included from ./src/hx/widgets/PlatformInfo.cpp:6:
/usr/include/wx-3.1/wx/platinfo.h:293:14: note: declared here
293 | wxString GetArchName() const
| ^~~~~~~~~~~user
08/18/2021, 8:06 PM./src/hx/widgets/Font.cpp: In member function ‘cpp::Pointer<wxFont> hx::widgets::Font_obj::createPointer()’:
./src/hx/widgets/Font.cpp:180:144: warning: ‘wxFont::wxFont(int, int, int, int, bool, const wxString&, wxFontEncoding)’ is deprecated: use wxFONT{FAMILY,STYLE,WEIGHT}_XXX constants [-Wdeprecated-declarations]
180 | HXLINE( 98) return ::cpp::Pointer_obj::fromRaw((new wxFont(this->_size,this->_family,this->_style,this->_weight,this->_underlined,s)));
| ^
In file included from /usr/include/wx-3.1/wx/font.h:631,
from ./src/hx/widgets/Font.cpp:6:
/usr/include/wx-3.1/wx/gtk/font.h:89:5: note: declared here
89 | wxFont(int size,
| ^~~~~~bright-gpu-74537
08/19/2021, 5:14 AMnutritious-father-64388
08/19/2021, 2:46 PMbright-gpu-74537
08/19/2021, 5:02 PMnutritious-father-64388
08/19/2021, 6:45 PMnutritious-father-64388
08/19/2021, 6:46 PMbright-gpu-74537
08/19/2021, 7:06 PMcss
.tableview .label { ... }
or
.tableview .itemrenderer .label { ... }bright-gpu-74537
08/19/2021, 7:06 PMnutritious-father-64388
08/19/2021, 8:04 PM<style>
.tableview .label {
font-size: 24px;
}
.tableview .itemrenderer .label {
font-size: 24px;
}
</style>
am I doing something obviously wrong or nah?
This is what the whole xml looks like:
<vbox style="padding: 5px;">
<style>
.tableview .label {
font-size: 24px;
}
.tableview .itemrenderer .label {
font-size: 24px;
}
</style>
<hbox>
<scrollview contentWidth="100%" width="790">
<tableview id="list" width="780">
<header>
<column id="species" text="Species" width="96" />
<column id="level" text="Level"/>
<column id="myId" text="ID" width="256"/>
</header>
<data>
</data>
</tableview>
</scrollview>
</hbox>
</vbox>nutritious-father-64388
08/19/2021, 8:04 PMdataSource is populated when this object is createdbright-gpu-74537
08/19/2021, 8:09 PMbright-gpu-74537
08/19/2021, 8:09 PMnutritious-father-64388
08/19/2021, 8:13 PMnutritious-father-64388
08/19/2021, 8:13 PMbright-gpu-74537
08/19/2021, 8:13 PMnutritious-father-64388
08/19/2021, 8:14 PMstyle parameter to the column tagsbright-gpu-74537
08/19/2021, 8:15 PMbright-gpu-74537
08/19/2021, 8:15 PMnutritious-father-64388
08/19/2021, 8:15 PMitemRenderer didn't workbright-gpu-74537
08/19/2021, 8:15 PMbright-gpu-74537
08/19/2021, 8:16 PMnutritious-father-64388
08/19/2021, 8:17 PMbright-gpu-74537
08/19/2021, 8:17 PMbright-gpu-74537
08/19/2021, 8:17 PMbright-gpu-74537
08/19/2021, 8:22 PM