I wanted to make a simple GUI for my application that would run on a linux based system and I want to make GUI that could be accessed remotely. I wanted to know if such a thing was possible with wxlua. That is, can I make a wxLua GUI for an application on a linux kernel and access that GUI from a remote system? If yes, how can I do that? I have written my preliminary wxLua program and it is working locally. Now I only need to make it accessible remotely. I am pretty inclined towards wxLua as I find it easy and attractive. You can refer to Norman Ramsey's answer here to know more. But if there's a better method, please let me know.
wxLua remotely accessible GUI
110 Views Asked by Utkarsh At
1
There are 1 best solutions below
Related Questions in USER-INTERFACE
- Perl Command Line Interpreter crashing on exit
- Android - How to check for button click in a custom alert dialog box?
- Working towards a more advanced graphics game
- Use GUI displayed results of SQL query vs new queries?
- Efficiently design method to construct a Java GUI?
- Implementing callback function for dialog-based application
- Ui-router URL changes, nested view not loading
- Dont see anything inside my jframe
- Sliding Card Design
- Display value of Y axis inside GUI plot
- Sash becomes lost after resize
- Java Swing Drawing Rectangles
- How do I convert point to local coordinates?
- WPF Workaround to add Window control as a child of visual
- Developing multi page app like Viber interface using Qt Quick?
Related Questions in LUA
- lua udp not working between computers
- Guitar Hero-like Timing Mechanic
- Call download lua script in app
- Erlang spawning large amounts of C processes
- does redis cluster support transactions ?
- I am writing an IVR using Lua and want to run xml script in between
- How to read a Bunch of files in a directory in lua
- How to pause a Lua script?
- lua 5.2.3 source lstring.c function luaS_resize
- Torch Lua: Why is my gradient descent not optimizing the error?
- How can I convert a character code to a string character in Lua?
- LuaInterface issue with vs 2015 RC project
- Storing Lua callback functions
- Compile Lua Code and store the bytecode in a new file
- Is there something wrong with my onRelease call?
Related Questions in WXWIDGETS
- wxComboBox adding hover effect
- wxWidgets and UTF8 - some characters missing
- wxSVG - problems with installation on linux
- How to download binary file using wxwidgets
- wxWidgets with AUI: OpenGL render loop method and wxPaintEvent
- how to use wx.Slider with SELRANGE?
- wxWidgets controls paint/draw/display issue on Windows
- Event when paint complete or smth similar in wxFrame
- wxpython refreshing images in wxpython staticbitmap
- Error while installing wxpropertygrid on Ubuntu 14.04
- wxWidgets Hello World example not compiling
- wxExecute can't execute file that needs admin permissions UAC
- Compiling a static version of wxWidgets
- Forwarded class, can't access to method
- Can't link wxWidgets app with Code::Blocks / MinGW
Related Questions in WXLUA
- wxExecuted process is not deleted when main window exits
- WxLua GUI 2d mappinp
- wxLua remotely accessible GUI
- compiling lua applications using wxluafreeze problems
- Using WxLua and need to install miniZip
- wxlua self changing value?
- Compiling wxLua (cross-platform & static)
- wxLua - Need Dynamic reflow when changing text in a wxStaticText control
- wxLua splitter window on resize
- Combine wxLua with LuaJIT on Mac OS X
- Lua userdata pass by reference - local functions in different files
- Lua (wxLua) how to create a nested "panel1" square in the center "panel"
- How can I send a wxTextCtrl input to a wxListBox in wxLua?
- Issues with io.read() in wxLUA (Does not wait for user input, Always returns nil)
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
You have a choice between running the entire GUI remotely and then using some kind of remote desktop protocol (if the server is on Linux, the typical choice would be VNC) or running a non-GUI server part remotely and connecting to it from a local GUI.
The former is trivial but doesn't give optimal results from the point of view of user-friendliness. The latter does, but is more complicated to realize and at the very least requires separating your application in the client and server parts.