source: libi4uccore/programmerspage.vala @ 646b111d142f1349957855e63155a81ac6dfb90d

Revision 646b111d142f1349957855e63155a81ac6dfb90d, 2.5 KB checked in by Matias De la Puente <mfpuente.ar@…>, 3 years ago (diff)

Remove some signals in ProgrammersPage?

  • Property mode set to 100644
Line 
1/* programmerspage.vala
2 *
3 * Copyright (C) 2010  Matias De la Puente
4 *
5 * This program is free software: you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation, either version 3 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
17 *
18 * Author:
19 *      Matias De la Puente <mfpuente.ar@gmail.com>
20 */
21
22public interface I4uc.Core.ProgrammersPage : GLib.Object, Page
23{
24        public abstract string current_programmer { set; get; }
25        public abstract string current_serial_port { set; get; }
26        public abstract string current_baud_rate { set; get; }
27        public abstract string current_devices_file { set; owned get; }
28        public abstract string current_devices_folder { set; owned get; }
29        public abstract string current_clock { set; get; }
30        public abstract string current_device { set; get; }
31        public abstract string current_fuses { set; get; }
32       
33        public abstract bool serial_port_visible { set; get; }
34        public abstract bool baud_rate_visible { set; get; }
35        public abstract bool devices_file_visible { set; get; }
36        public abstract bool devices_folder_visible { set; get; }
37        public abstract bool clock_visible { set; get; }
38        public abstract bool device_visible { set; get; }
39        public abstract bool fuses_visible { set; get; }
40       
41        public abstract bool programmer_sensitive { set; get; }
42        public abstract bool serial_port_sensitive { set; get; }
43        public abstract bool baud_rate_sensitive { set; get; }
44        public abstract bool devices_file_sensitive { set; get; }
45        public abstract bool devices_folder_sensitive { set; get; }
46        public abstract bool clock_sensitive { set; get; }
47        public abstract bool device_sensitive { set; get; }
48        public abstract bool fuses_sensitive { set; get; }
49       
50        public signal void update_serial_port_clicked ();
51       
52        public abstract void add_programmer (string programmer);
53        public abstract void add_serial_port (string serial_port);
54        public abstract void add_baud_rate (string baud_rate);
55        public abstract void add_device (string device);
56        public abstract void clear_serial_ports_list ();
57        public abstract void clear_devices_list ();
58}
Note: See TracBrowser for help on using the repository browser.