Search found 174 matches
- Fri Apr 24, 2020 5:44 am
- Forum: C++ Development
- Topic: Aui -Htmlwindow
- Replies: 13
- Views: 905
Re: Aui -Htmlwindow
gnome but wayland switched off.
- Thu Apr 23, 2020 12:49 pm
- Forum: C++ Development
- Topic: Aui -Htmlwindow
- Replies: 13
- Views: 905
Re: Aui -Htmlwindow
I guess I now found a possible reason for the problem. Not that I would be able to change it. But I try to explain what I think the problem is. In Linux the resize will be most likely generic, but only for frames and (windows) not for panes of AUI. In my case I somehow managed to get the resize runn...
- Thu Apr 23, 2020 11:18 am
- Forum: C++ Development
- Topic: Aui -Htmlwindow
- Replies: 13
- Views: 905
Re: Aui -Htmlwindow
With not shown at all I mean, in Linux I see the right lower corner marked if I can resize it. And it is not marked when I use the standard aui demo and add Resizable(true) to it.
In my programm it is only shown, wehn I open the pane(s) before I opened another frame.
In my programm it is only shown, wehn I open the pane(s) before I opened another frame.
- Thu Apr 23, 2020 10:12 am
- Forum: C++ Development
- Topic: Aui -Htmlwindow
- Replies: 13
- Views: 905
Re: Aui -Htmlwindow
That is the one I used to have the same code as in my programm: void MyFrame::OnCreateTree(wxCommandEvent& WXUNUSED(event)) { m_mgr.AddPane(CreateTreeCtrl(), wxAuiPaneInfo(). Name("Test").Resizable(true).Caption("Bibel").CloseButton(true).Dockable(false).Float().CaptionVisible(true).MaximizeButton(t...
- Thu Apr 23, 2020 10:10 am
- Forum: C++ Development
- Topic: Aui -Htmlwindow
- Replies: 13
- Views: 905
Re: Aui -Htmlwindow
Windows is working. did you try the normal demo and just add Resizable, inside one of the onCreate methods? And this in Linux?
- Thu Apr 23, 2020 4:25 am
- Forum: C++ Development
- Topic: Aui -Htmlwindow
- Replies: 13
- Views: 905
Re: Aui -Htmlwindow
I tried just to add Resizable(true) to one of the Oncreate in the originial AuiDemo and there the resize posibility is not shown at all. So resizeable not possible. How I managed that it is shown by mine, I do not know, and also why it is shown when new pane is created before new frames are created....
- Thu Apr 23, 2020 3:48 am
- Forum: C++ Development
- Topic: Aui -Htmlwindow
- Replies: 13
- Views: 905
Re: Aui -Htmlwindow
Lib gtk 3.24.5-1
- Wed Apr 22, 2020 4:41 pm
- Forum: C++ Development
- Topic: Aui -Htmlwindow
- Replies: 13
- Views: 905
Re: Aui -Htmlwindow
GTK 3.0 WxWidgets 3.1.3 In the sample I did not try it yet, anyway there is resize to a not dockable not included so i will have to rewrite it. Will do that in the next days. But as said it works as long as I open the other panes first and only then open other frames. If I open another frame first t...
- Wed Apr 22, 2020 12:30 pm
- Forum: C++ Development
- Topic: Aui -Htmlwindow
- Replies: 13
- Views: 905
Re: Aui -Htmlwindow
What I forgot, I use it in Linux.
- Wed Apr 22, 2020 7:55 am
- Forum: C++ Development
- Topic: Aui -Htmlwindow
- Replies: 13
- Views: 905
Aui -Htmlwindow
Hello I have a frame with an AUI Manager, everything works right. Only Problem, if I start a seperate floating pane, which is not dockable but resizeable, it is resizable, if I did not start any other frame before i opened the pane. If I first start a other frame (even if I close it right after it),...
- Thu Apr 16, 2020 2:46 pm
- Forum: Database Related
- Topic: regex select
- Replies: 7
- Views: 1728
Re: regex select
wxRegEx mynew(_T("[aáàäāâăã]"),wxRE_BASIC); mynew.ReplaceAll(&searchText, _T("\\[aáàăäâāã\\]")); wxRegEx mynew2(_T("[eéèëēĕệê]"),wxRE_BASIC); mynew2.ReplaceAll(&searchText, _T("\\[eéèëēĕėệê\\]")); wxRegEx mynew3(_T("[iíìî]"),wxRE_BASIC); mynew3.ReplaceAll(&searchText, _T("\\[iíìî\\]")); wxRegEx myn...
- Sun Apr 12, 2020 8:32 am
- Forum: C++ Development
- Topic: regex
- Replies: 2
- Views: 322
Re: regex
Overlooked that, totally. But it should show it in the next line. as error.
Happened because I copied java code from a website into it, and wanted to convert it, but then i did not check the ";"
Happened because I copied java code from a website into it, and wanted to convert it, but then i did not check the ";"
- Sun Apr 12, 2020 7:36 am
- Forum: C++ Development
- Topic: regex
- Replies: 2
- Views: 322
regex
Hello Can somebody help me. wxString addTildeOptions(wxString searchText) { wxRegEx mynew(_T("[aáàäâã]"),wxRE_BASIC); mynew.ReplaceAll(&searchText, _T("\\[aáàäâã\\]")) // searchText.ReplaceAll("[eéèëê]", "\\[eéèëê\\]") // searchText.replaceAll("[iíìî]", "\\[iíìî\\]") // searchText.replaceAll("[oóòöô...
- Sun Apr 12, 2020 7:31 am
- Forum: Database Related
- Topic: regex select
- Replies: 7
- Views: 1728
Re: regex select
Try to convert the java code for c++ wxString addTildeOptions(wxString searchText) { wxRegEx mynew(_T("[aáàäâã]"),wxRE_BASIC); mynew.ReplaceAll(&searchText, _T("\\[aáàäâã\\]")) // searchText.ReplaceAll("[eéèëê]", "\\[eéèëê\\]") // searchText.replaceAll("[iíìî]", "\\[iíìî\\]") // searchText.replaceAl...
- Sun Apr 12, 2020 5:02 am
- Forum: Database Related
- Topic: regex select
- Replies: 7
- Views: 1728
Re: regex select
Not even sure if regex is the only way. Just need a way to find it. Have found something for java, which might be useful in a way? public static String addTildeOptions(String searchText) { return searchText.toLowerCase() .replaceAll("[aáàäâã]", "\\[aáàäâã\\]") .replaceAll("[eéèëê]", "\\[eéèëê\\]") ....