File: new_window.h

package info (click to toggle)
gwget2 0.94-2sarge1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 3,032 kB
  • ctags: 584
  • sloc: sh: 8,393; ansic: 4,446; makefile: 184
file content (33 lines) | stat: -rw-r--r-- 1,293 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
/*
 *  This program is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation; either version 2 of the License, or
 *  (at your option) any later version.
 *
 *  This program is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU Library General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with this program; if not, write to the Free Software
 *  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
 */
 

#ifndef _NEW_WINDOW_H
#define _NEW_WINDOW_H


void on_ok_button_clicked(GtkWidget *widget, gpointer data);
int check_url(char *str1, char *str2);
void create_new_window(void);
void on_cancel_button_clicked(GtkWidget *widget,gpointer data);

/* Save in Fileselection callbacks */
void on_new_browse_save_in_button_clicked(GtkWidget *widget, gpointer data);
void on_new_fs_ok_button_clicked(GtkWidget *widget, gpointer data);
void on_new_fs_cancel_button_clicked(GtkWidget *widget, gpointer data);
void create_new_window_with_url (gchar *url);

#endif