aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorItay Grudev <itay.grudev@gmail.com>2015-02-26 19:29:46 +0000
committerItay Grudev <itay.grudev@gmail.com>2015-02-26 19:29:46 +0000
commitc65fcd3b609037fc7865723add6aaa29f384c25c (patch)
tree7bbd3e443193961b59205352b6023495827d1e95 /README.md
parentSource Example C++ Highlighting (diff)
downloadsingleapplication-c65fcd3b609037fc7865723add6aaa29f384c25c.tar.xz
Update README.md
Diffstat (limited to 'README.md')
-rw-r--r--README.md7
1 files changed, 4 insertions, 3 deletions
diff --git a/README.md b/README.md
index 0826ba0..f445164 100644
--- a/README.md
+++ b/README.md
@@ -5,10 +5,11 @@ This is a replacement of the QSingleApplication for Qt5.
Usage
-----
+The ```SingleApplication``` class inherits from ```QApplication```. Use it as if you are using the ```QApplication``` class.
-The library uses your ```Organization Name``` and ```Application Name``` to set up a Local Server on which the first instance of your application would listen on and each subsequent instance would connect and then exit.
+The library uses your ```Organization Name``` and ```Application Name``` to set up a Local Socket. The first instance of your Application would start a ```QLocalServer``` and then listen for connections on the socket. Every subsequent instance of your application would attempt to connect to that socket. If successful it will be terminated, while in the Primary Instance, ```SingleApplication``` would emmit the ```showUp()``` signal.
-I also used ```stdlib``` to terminate the program with it's ```exit()``` function.
+The library uses ```stdlib``` to terminate the program with the ```exit()``` function.
Here is an example usage of the library:
```cpp
@@ -27,7 +28,7 @@ int main(int argc, char *argv[])
The ```Show Up``` signal
------------------------
-The SingleApplication class implements a ```showUp()``` signal. You can bind to that signal to raise your application's window, for example. This way when someone tries to run your application twice he would end up with the primary instance's Main Window and the new instance would be terminated.
+The SingleApplication class implements a ```showUp()``` signal. You can bind to that signal to raise your application's window when a new instance had been started.
License
-------