]> git.saurik.com Git - wxWidgets.git/blame - docs/latex/wx/snglinst.tex
Extended wxTextAttr and added wxTextCtrl::GetStyle stub
[wxWidgets.git] / docs / latex / wx / snglinst.tex
CommitLineData
68a602fc
VZ
1%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2%% Name: snglinst.tex
3%% Purpose: wxSingleInstanceChecker documentation
4%% Author: Vadim Zeitlin
5%% Modified by:
6%% Created: 08.06.01
7%% RCS-ID: $Id$
8%% Copyright: (c) 2001 Vadim Zeitlin
9%% License: wxWindows license
10%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
11
12\section{\class{wxSingleInstanceChecker}}\label{wxsingleinstancechecker}
13
14wxSingleInstanceChecker class allows to check that only a single instance of a
15program is running. To do it, you should create an object of this class. As
16long as this object is alive, calls to
17\helpref{IsAnotherRunning()}{wxsingleinstancecheckerisanotherrunning} from
cc81d32f 18other processes will return {\tt true}.
68a602fc
VZ
19
20As the object should have the life span as big as possible, it makes sense to
21create it either as a global or in \helpref{wxApp::OnInit}{wxapponinit}. For
22example:
23
24\begin{verbatim}
25bool MyApp::OnInit()
26{
8d0a0c3f
VZ
27 const wxString name = wxString::Format("MyApp-%s", wxGetUserId().c_str());
28 m_checker = new wxSingleInstanceChecker(name);
68a602fc
VZ
29 if ( m_checker->IsAnotherRunning() )
30 {
31 wxLogError(_("Another program instance is already running, aborting."));
32
cc81d32f 33 return false;
68a602fc
VZ
34 }
35
36 ... more initializations ...
37
cc81d32f 38 return true;
68a602fc
VZ
39}
40
41int MyApp::OnExit()
42{
43 delete m_checker;
44
45 return 0;
46}
47\end{verbatim}
48
8d0a0c3f
VZ
49Note using \helpref{wxGetUserId()}{wxgetuserid} to construct the name: this
50allows different user to run the application concurrently which is usually the
51intended goal. If you don't use the user name in the wxSingleInstanceChecker
52name, only one user would be able to run the application at a time.
53
54This class is implemented for Win32 and Unix platforms (supporting {\tt fcntl()}
55system call, but almost all of modern Unix systems do) only.
68a602fc
VZ
56
57\wxheading{Derived from}
58
59No base class
60
b78d046d
VZ
61\wxheading{Include files}
62
63<wx/snglinst.h>
64
68a602fc
VZ
65\latexignore{\rtfignore{\wxheading{Members}}}
66
67\membersection{wxSingleInstanceChecker::wxSingleInstanceChecker}\label{wxsingleinstancecheckerctor}
68
69\func{}{wxSingleInstanceChecker}{\void}
70
71Default ctor, use \helpref{Create()}{wxsingleinstancecheckercreate} after it.
72
73\membersection{wxSingleInstanceChecker::wxSingleInstanceChecker}\label{wxsingleinstancecheckerwxsingleinstancechecker}
74
75\func{}{wxSingleInstanceChecker}{\param{const wxString\& }{name}, \param{const wxString\& }{path = wxEmptyString}}
76
77Like \helpref{Create()}{wxsingleinstancecheckercreate} but without
78error checking.
79
80\membersection{wxSingleInstanceChecker::Create}\label{wxsingleinstancecheckercreate}
81
82\func{bool}{Create}{\param{const wxString\& }{name}, \param{const wxString\& }{path = wxEmptyString}}
83
84Initialize the object if it had been created using the default constructor.
85Note that you can't call Create() more than once, so calling it if the
86\helpref{non default ctor}{wxsingleinstancecheckerwxsingleinstancechecker}
87had been used is an error.
88
89\wxheading{Parameters}
90
bc00e715 91\docparam{name}{must be given and be as unique as possible. It is used as the
68a602fc 92mutex name under Win32 and the lock file name under Unix.
8d0a0c3f
VZ
93\helpref{GetAppName()}{wxappgetappname} and \helpref{wxGetUserId()}{wxgetuserid}
94are commonly used to construct this parameter.}
68a602fc
VZ
95
96\docparam{path}{is optional and is ignored under Win32 and used as the directory to
97create the lock file in under Unix (default is
7c415790 98\helpref{wxGetHomeDir()}{wxgethomedir})}
68a602fc
VZ
99
100\wxheading{Return value}
101
cc81d32f 102Returns {\tt false} if initialization failed, it doesn't mean that another
68a602fc
VZ
103instance is running - use
104\helpref{IsAnotherRunning()}{wxsingleinstancecheckerisanotherrunning} to check
105for it.
106
107\membersection{wxSingleInstanceChecker::IsAnotherRunning}\label{wxsingleinstancecheckerisanotherrunning}
108
109\constfunc{bool}{IsAnotherRunning}{\void}
110
cc81d32f
VS
111Returns {\tt true} if another copy of this program is already running, {\tt
112false} otherwise.
68a602fc
VZ
113
114\membersection{wxSingleInstanceChecker::\destruct{wxSingleInstanceChecker}}\label{wxsingleinstancecheckerdtor}
115
116\func{}{\destruct{wxSingleInstanceChecker}}{\void}
117
118Destructor frees the associated resources.
119
120Note that it is not virtual, this class is not meant to be used polymorphically
121