Search found 80 matches

by saifcoder
Wed Aug 19, 2020 11:11 pm
Forum: Open Discussion
Topic: WX and the future of UI with the web technologies
Replies: 4
Views: 14556

Re: WX and the future of UI with the web technologies

Electron it's not a UI tool, it's a complete framework to do everything.. I hate run webserver to show hello world lol (Node.js). however, I'm talking about WX, more and more people use wxwebview as the primary UI, I just saw a big project writed using WX with completely no old vanilla UI.. the UI w...
by saifcoder
Wed Aug 19, 2020 12:43 pm
Forum: Open Discussion
Topic: WX and the future of UI with the web technologies
Replies: 4
Views: 14556

WX and the future of UI with the web technologies

You know, Nokia was the king, then the world move to the smart phones.. msn, myspace, yahoo messenger.. then the world move to social medias., Did the world will move in the next years to the UI using web technologies ? I mean no more wxButton/wxTextCtrl ? If yes, we need to seriously focus on wxWeb...
by saifcoder
Wed Aug 19, 2020 12:37 pm
Forum: Open Discussion
Topic: Yesterday can't connect to the forum !!
Replies: 3
Views: 13552

Re: Yesterday can't connect to the forum !!

Yes, it's a server issue or phpbb issue, got it! thank you :)
by saifcoder
Sat Aug 15, 2020 1:30 am
Forum: Platform Related Issues
Topic: Ubuntu 20 - Web extension not found in "/usr/local/lib/wx/3.1.3/web-extensions
Replies: 14
Views: 4197

Re: Ubuntu 20 - Web extension not found in "/usr/local/lib/wx/3.1.3/web-extensions

I just decide to say goodby to static linking on Linux!! Maybe you don't know, but your help, answers, info's, since two years ago has helped me to write some WX tools for this company and then I get a permanent job position, so Thank you so much Mr. OneEyeMan and David Hart :) Thanks to all members...
by saifcoder
Fri Aug 14, 2020 12:28 pm
Forum: Open Discussion
Topic: Yesterday can't connect to the forum !!
Replies: 3
Views: 13552

Yesterday can't connect to the forum !!

Yesterday (8/13/2020) when I set my user + psw, and after clicking on login button it redirect to index with no sign-in session !
I don't know if this is phpBB issue or is a 24h ban by an funny Admin :D
did this happened to you too?

Thanks.
by saifcoder
Fri Aug 14, 2020 12:20 pm
Forum: Platform Related Issues
Topic: Ubuntu 20 - Web extension not found in "/usr/local/lib/wx/3.1.3/web-extensions
Replies: 14
Views: 4197

Re: Ubuntu 20 - Web extension not found in "/usr/local/lib/wx/3.1.3/web-extensions

Thank you, Okay, first using "monolithic" was did by thewxwguy not me. second I know the difference between the static and dynamic linking, but did you know that wxWidgets support static linking natively ? the static option in configure exist for a reason, look here in your WiKi Linking Wi...
by saifcoder
Wed Aug 12, 2020 7:40 pm
Forum: Platform Related Issues
Topic: maximum portability (Linux)
Replies: 4
Views: 1204

Re: maximum portability (Linux)

Thank you David, I will take a look at AppImage :)
by saifcoder
Wed Aug 12, 2020 7:37 pm
Forum: Platform Related Issues
Topic: Ubuntu 20 - Web extension not found in "/usr/local/lib/wx/3.1.3/web-extensions
Replies: 14
Views: 4197

Re: Ubuntu 20 - Web extension not found in "/usr/local/lib/wx/3.1.3/web-extensions

Thank you so much sir, I read every word you write attentively, I understand the nature of Linux as a shared lib philosophy, I work as desktop app developer right now, all old project are shared, except this one it's need to be portable as maximum possible (Linux). Yes the company already know about...
by saifcoder
Wed Aug 12, 2020 7:08 pm
Forum: Platform Related Issues
Topic: maximum portability (Linux)
Replies: 4
Views: 1204

maximum portability (Linux)

Hi, Please, what is the best way to design a portable GUI tool? wxWidgets latest (GitHub master) GTK3 Webview (no Internet, used as primary UI) Static linked (for maximum portability) Right now I'm doing this: Lib: apt-get install build-essential apt-get install libgtk-3-dev apt-get install libwebki...
by saifcoder
Sun Mar 01, 2020 5:24 pm
Forum: C++ Development
Topic: URL Encode/Decode
Replies: 4
Views: 33123

Re: URL Encode/Decode

Thank you guys for your reply, in my situation the URL may contain UTF-8 encoded string, like " mydomain.com/Le goût " --> " mydomain.com%2FLe%20go%C3%BBt ", so I need an library that support UTF-8 to solve this, and this one done the job : https://uriparser.github.io/ Thank you,
by saifcoder
Sat Feb 29, 2020 7:09 pm
Forum: C++ Development
Topic: URL Encode/Decode
Replies: 4
Views: 33123

URL Encode/Decode

We have a sample wxString contain encoded URL by JavaScript function encodeURI(), I read all the document of wxURI / wxURL and can't figure out how to decode the string.

Please, how to decode an URL ?

Example:

Code: Select all

hello%2Fwx+forum ---> hello/wx forum
by saifcoder
Sat Feb 01, 2020 2:27 am
Forum: Platform Related Issues
Topic: wxWebView Linux (WebKit) - AllowNavigationToInvalidURL
Replies: 4
Views: 1917

Re: wxWebView Linux (WebKit) - AllowNavigationToInvalidURL

Same result in sample, because in default policy setting navigation to invalid url is not allowed, However, this is not important, a sample URL encode / decode can fix this.

Thank you sir.
by saifcoder
Fri Jan 31, 2020 1:04 am
Forum: Platform Related Issues
Topic: wxWebView Linux (WebKit) - AllowNavigationToInvalidURL
Replies: 4
Views: 1917

Re: wxWebView Linux (WebKit) - AllowNavigationToInvalidURL

There no error message in GUI, it's only won't create any event in OnNewWindow(wxWebViewEvent& evt) because the url is invalid. while wen we run the same code in Windows the event created and we can catch the invalid url in OnNewWindow(wxWebViewEvent& evt). We can fix this by encode bad url ...
by saifcoder
Thu Jan 30, 2020 1:05 am
Forum: Platform Related Issues
Topic: wxWebView Linux (WebKit) - AllowNavigationToInvalidURL
Replies: 4
Views: 1917

wxWebView Linux (WebKit) - AllowNavigationToInvalidURL

In same situation, I need to navigate to an invalid URL just to do same stuff in OnNewWindow(wxWebViewEvent& evt) , in Windows wxWebView ( Internet Explorer backend ) it's allow navigation to an invalid URL in default, but in Linux ( WebKit backend ) show log error Unable to open a window with i...