Search found 15 matches

by SSteven
Wed Aug 08, 2018 8:11 am
Forum: General Development
Topic: Developing wwb apps using wxWidgets on the cloud
Replies: 1
Views: 1271

Developing wwb apps using wxWidgets on the cloud

I would like to develop web apps using wxWidgets on the cloud.

Is wxWidgets supported by any PaaS sites and if so, which ones?

How can wxWidget app content be delivered on the web to the browser?
by SSteven
Tue Aug 01, 2017 6:56 am
Forum: Platform Related Issues
Topic: wx on Android?
Replies: 2
Views: 1333

wx on Android?

Hi

Can wxwidgets be used on Android?

If so, how?

Thanks
by SSteven
Thu Jan 21, 2016 9:05 am
Forum: Component Writing
Topic: Extending wx controls
Replies: 4
Views: 5565

Re: Extending wx controls

Thanks for the reply. 1) Lets consider the case where the control is implemented as a native control. In this case, I'm guessing that the wx control would be a wrapper for the native control. If so, it should be possible to extend the wrapper control (but obviously not the underlying native control,...
by SSteven
Fri Jan 15, 2016 8:51 am
Forum: Component Writing
Topic: Extending wx controls
Replies: 4
Views: 5565

Extending wx controls

Hi

1) Is it possible to extend wx controls, say, in order to give them additional properties?

2) Is it possible to use a Designer to set the values of these new wx control properties (the ones added) at design time? If so, which designer has this capability?

Thanks
Steven
by SSteven
Sat Oct 17, 2015 4:02 pm
Forum: Compiler / Linking / IDE Related
Topic: wxmsw30u_gcc_custom.dll is missing, can't run exe
Replies: 11
Views: 8586

Re: wxmsw30u_gcc_custom.dll is missing, can't run exe

Doublemaxx wrote: "You either have to ship the DLLs together with your application or use static linking (SHARED=0 when building both the wxWidgets libraries and your application)." I tried this on my PC. It appears that the exes and the DLLs must be in the same folder. If so, it works. Ot...
by SSteven
Sat Oct 17, 2015 3:44 pm
Forum: Compiler / Linking / IDE Related
Topic: Command-line command for compiling and linking a wx app
Replies: 3
Views: 1692

Re: Command-line command for compiling and linking a wx app

Hi

Thanks for the guidance. I have tried it and confirm it works!

Thanks
Steven
by SSteven
Tue Oct 13, 2015 10:46 am
Forum: Compiler / Linking / IDE Related
Topic: Command-line command for compiling and linking a wx app
Replies: 3
Views: 1692

Re: Command-line command for compiling and linking a wx app

Hi I used the following BAT file to compile and link the "Hello World" wx program: F: CD \Files\C\SW\Applications\Samples\C++Samples\wxwidgets\HelloWorld0 g++ -o HelloWorldwx.exe -ID:\Libs\wxWidgetsStaticLib\include HelloWorldwx.cpp -LD:Libs \wxWidgetsStaticLib\lib -llibwxbase30ud.a -LD:Li...
by SSteven
Mon Oct 12, 2015 10:37 am
Forum: Compiler / Linking / IDE Related
Topic: Command-line command for compiling and linking a wx app
Replies: 3
Views: 1692

Command-line command for compiling and linking a wx app

Hi I'm trying to compile and link my _first_ wx program (the sample program in the wx docs) from the command line. Which command should be used from the command line for compiling and linking? I have tried finding this command on the wx site but am unable to do so; hence the query. I have already co...
by SSteven
Wed Sep 09, 2015 8:08 am
Forum: C++ Development
Topic: Browser-hosting
Replies: 4
Views: 1574

Re: Browser-hosting

Let me explain.

Using wxWidgets, I can create a desktop app that contains a GUI.

Now the question is whether wxWIdgets can also be used to create a GUI in a browser-hosted app.

Thanks.
Steven
by SSteven
Tue Sep 08, 2015 3:39 pm
Forum: C++ Development
Topic: Browser-hosting
Replies: 4
Views: 1574

Browser-hosting

Hi

Is it possible for a wx UI to be hosted by a browser? If so, how?

For this, would the top-level wx UI element be wxFrame and would the browser window need to be populated with this element?

Thanks
Steven
by SSteven
Tue Sep 08, 2015 3:37 pm
Forum: Compiler / Linking / IDE Related
Topic: Error while compiling wxWidgets
Replies: 12
Views: 7730

Re: Error while compiling wxWidgets

Yes, the build.cfg file is present in the "lib\gcc_lib\mswud" folder. Thus, the compilation is OK.

Thanks
Steven
by SSteven
Mon Sep 07, 2015 11:17 am
Forum: Compiler / Linking / IDE Related
Topic: Error while compiling wxWidgets
Replies: 12
Views: 7730

Re: Error while compiling wxWidgets

Yes, adding c:\mingw\bin\ to the PATH variable definition has definitely helped. Thanks for this advice. Compilation proceeds and some output files are generated in the following subdirectories of the wxwidgets unzip folder: 1. build\msw\mswud: Contains several files with .d and .o suffixes. 2. lib\...
by SSteven
Sat Sep 05, 2015 1:16 pm
Forum: Compiler / Linking / IDE Related
Topic: Error while compiling wxWidgets
Replies: 12
Views: 7730

Error while compiling wxWidgets

Hi I downloaded the wxWidgets source, unzipped it and followed the instructions to compile it, using the following bat file: ECHO ON G: CD %WXWIN%\build\msw %MINGW%mingw32-make -f makefile.gcc PAUSE Note: 1) The wxWidgets source is installed on my G: volume. 2) %WXWIN% environment variable is correc...
by SSteven
Fri Sep 04, 2015 10:34 am
Forum: C++ Development
Topic: Widgets that use vector-based graphics
Replies: 3
Views: 1490

Re: Widgets that use vector-based graphics

Thanks for the reply. Let me clarify.Actually I am keen on using native graphics. The question is whether native vector graphics can be used. For instance on Windows, can I use WPF's controls (which are vector-based)? I'm not interested in replacing native controls with custom graphics. Thanks Steven
by SSteven
Fri Sep 04, 2015 7:19 am
Forum: C++ Development
Topic: Widgets that use vector-based graphics
Replies: 3
Views: 1490

Widgets that use vector-based graphics

Hi All

Does wXWidgets use vector-based graphics or raster-based graphics for its widgets?

The kind of widgets I'm looking for are the typical ones used in Biz apps (eg: buttons, textbox, combobox, etc.), but ideally should use vector-based graphics.

Thanks
Steven