~ubuntu-branches/ubuntu/wily/me-tv/wily-proposed

« back to all changes in this revision

Viewing changes to src/edit_channel_dialog.h

  • Committer: Bazaar Package Importer
  • Author(s): Michael Lamothe
  • Date: 2010-05-22 13:10:32 UTC
  • mfrom: (1.1.12 upstream) (3.1.11 sid)
  • Revision ID: james.westby@ubuntu.com-20100522131032-ibethpcgb8lpwt1w
Tags: 1.2.4-1
* New upstream release
* Maintainer change to Michael Lamothe
* Updated debian/control
  - Added libunique-dev to Build-Depends
  - Added libdbus-glib-1-dev to Build-Depends
* Added me-tv-player.1 to debian/me-tv.manpages

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (C) 2010 Michael Lamothe
 
3
 *
 
4
 * This file is part of Me TV
 
5
 *
 
6
 * This program is free software; you can redistribute it and/or modify
 
7
 * it under the terms of the GNU General Public License as published by
 
8
 * the Free Software Foundation; either version 2 of the License, or
 
9
 * (at your option) any later version.
 
10
 * 
 
11
 * This program is distributed in the hope that it will be useful,
 
12
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
14
 * GNU Library General Public License for more details.
 
15
 * 
 
16
 * You should have received a copy of the GNU General Public License
 
17
 * along with this program; if not, write to the Free Software
 
18
 * Foundation, Inc., 51 Franklin Street, Fifth Floor Boston, MA 02110-1301,  USA
 
19
 */
 
20
 
 
21
#ifndef __EDIT_CHANNEL_DIALOG_H__
 
22
#define __EDIT_CHANNEL_DIALOG_H__
 
23
 
 
24
#include <gtkmm.h>
 
25
 
 
26
class EditChannelDialog : public Gtk::Dialog
 
27
{
 
28
private:
 
29
        const Glib::RefPtr<Gtk::Builder>        builder;
 
30
        void on_button_edit_channel_save_clicked();
 
31
        void on_button_edit_channel_cancel_clicked();
 
32
public:
 
33
        EditChannelDialog(BaseObjectType* cobject, const Glib::RefPtr<Gtk::Builder>& builder);
 
34
        static EditChannelDialog& create(Glib::RefPtr<Gtk::Builder> builder);
 
35
 
 
36
        gint run(Gtk::Window* transient_for);
 
37
};
 
38
 
 
39
#endif
 
 
b'\\ No newline at end of file'