Nemiver  0.3
nmv-remote-target-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_REMOTE_TARGET_DIALOG_H__
26 #define __NMV_REMOTE_TARGET_DIALOG_H__
27 #include "nmv-dialog.h"
28 
29 NEMIVER_BEGIN_NAMESPACE (nemiver)
30 
31 class RemoteTargetDialog : public Dialog {
32  struct Priv;
33  SafePtr<Priv> m_priv;
34 
35 public:
36 
39  SERIAL_CONNECTION_TYPE
40  };
41 
42  RemoteTargetDialog (Gtk::Window &a_parent,
43  const UString &a_root_path);
44  virtual ~RemoteTargetDialog ();
45 
46  const UString& get_cwd () const;
47  void set_cwd (const UString &);
48 
49  const UString& get_executable_path () const;
50  void set_executable_path (const UString &a_path);
51 
52  const UString& get_solib_prefix_path () const;
53  void set_solib_prefix_path (const UString &a_path);
54 
55  ConnectionType get_connection_type ();
56  void set_connection_type (ConnectionType a_type);
57 
58  const UString& get_server_address () const;
59  void set_server_address (const UString &a_address);
60 
61  unsigned get_server_port () const;
62  void set_server_port (unsigned a_port);
63 
64  const UString& get_serial_port_name () const;
65  void set_serial_port_name (const UString &a_serial);
66 };//end RemoteTargetDialog
67 
68 NEMIVER_END_NAMESPACE (nemiver)
69 
70 #endif //__NMV_REMOTE_TARGET_DIALOG_H__
nemiver::RemoteTargetDialog
Definition: nmv-remote-target-dialog.h:31
nemiver
Definition: nmv-address.h:31
nemiver::common::UString
Definition: nmv-ustring.h:45
nemiver::RemoteTargetDialog::TCP_CONNECTION_TYPE
@ TCP_CONNECTION_TYPE
Definition: nmv-remote-target-dialog.h:38
nemiver::Dialog
Definition: nmv-dialog.h:50
nemiver::RemoteTargetDialog::ConnectionType
ConnectionType
Definition: nmv-remote-target-dialog.h:37
nemiver::common::SafePtr< Priv >
nmv-dialog.h