Nemiver  0.3
nmv-proc-list-dialog.h
Go to the documentation of this file.
1 //Author: Dodji Seketeli
2 /*
3  *This file is part of the Nemiver project
4  *
5  *Nemiver is free software; you can redistribute
6  *it and/or modify it under the terms of
7  *the GNU General Public License as published by the
8  *Free Software Foundation; either version 2,
9  *or (at your option) any later version.
10  *
11  *Nemiver is distributed in the hope that it will
12  *be useful, but WITHOUT ANY WARRANTY;
13  *without even the implied warranty of
14  *MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
15  *See the GNU General Public License for more details.
16  *
17  *You should have received a copy of the
18  *GNU General Public License along with Nemiver;
19  *see the file COPYING.
20  *If not, write to the Free Software Foundation,
21  *Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
22  *
23  *See COPYRIGHT file copyright information.
24  */
25 #ifndef __NMV_PROC_LIST_DIALOG_H__
26 #define __NMV_PROC_LIST_DIALOG_H__
27 
29 #include "common/nmv-proc-mgr.h"
30 #include "nmv-dialog.h"
31 
32 namespace common {
33  class UString;
34 }
35 
36 NEMIVER_BEGIN_NAMESPACE (nemiver)
37 
39 
40 class ProcListDialog : public Dialog {
41  class Priv;
42  SafePtr<Priv> m_priv;
43 
44 public:
45 
46  ProcListDialog (Gtk::Window &a_parent,
47  const UString &a_root_path,
48  IProcMgr &a_proc_mgr);
49  virtual ~ProcListDialog ();
50  virtual gint run ();
51 
52  bool has_selected_process ();
53  bool get_selected_process (IProcMgr::Process &a_proc/*out param*/);
54 };//end class ProcListDialog
55 NEMIVER_END_NAMESPACE (nemiver)
56 
57 #endif //__NMV_PROC_LIST_DIALOG_H__
nmv-safe-ptr-utils.h
nemiver
Definition: nmv-address.h:31
nemiver::common::IProcMgr::Process
Definition: nmv-proc-mgr.h:59
nemiver::common::UString
Definition: nmv-ustring.h:45
nemiver::common::IProcMgr
Definition: nmv-proc-mgr.h:49
nmv-proc-mgr.h
nemiver::ProcListDialog
Definition: nmv-proc-list-dialog.h:40
nemiver::Dialog
Definition: nmv-dialog.h:50
nemiver::common::SafePtr< Priv >
nmv-dialog.h
common
Definition: nmv-proc-list-dialog.h:32