Daniel R. Livingston
Daniel R. Livingston

Reputation: 1229

Quick implementation of GUI application that reads local server data

The Issue

I'm trying to build a very simple GUI application that either (i) runs on a local Ubuntu 14 server, or (ii) that runs locally but can read/write data from this server. Multiple people will be using this implementation to make modifications to a very simple array data file. The final solution can either be a script, dynamic webpage, or precompiled program.

Attempted Solutions

Upvotes: 0

Views: 76

Answers (1)

v2v1
v2v1

Reputation: 641

Your server should have X11 forwarding. Here is a page with an introduction:

http://math.msu.su/~vvb/2course/Borisenko/CppProjects/GWindow/xintro.html

I don't recommend coding an X11 application from scratch; this will take a very long time. Use an IDE like QT creator or XCode to speed up the process. If coded in C++, the X11 application should not have compatibility issues like you do with Python and PHP.

Upvotes: 3

Related Questions