Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Files
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
444
Issues
444
List
Boards
Labels
Service Desk
Milestones
Merge Requests
30
Merge Requests
30
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
GNOME
Files
Commits
f57a9580
Commit
f57a9580
authored
Feb 17, 2011
by
Cosimo Cecchi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
location-dialog: remove NautilusLocationDialog
The only user was NautilusSpatialWindow
parent
b1589b8c
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
0 additions
and
303 deletions
+0
-303
src/Makefile.am
src/Makefile.am
+0
-2
src/nautilus-location-dialog.c
src/nautilus-location-dialog.c
+0
-248
src/nautilus-location-dialog.h
src/nautilus-location-dialog.h
+0
-53
No files found.
src/Makefile.am
View file @
f57a9580
...
...
@@ -91,8 +91,6 @@ nautilus_SOURCES = \
nautilus-list-view.h
\
nautilus-location-bar.c
\
nautilus-location-bar.h
\
nautilus-location-dialog.c
\
nautilus-location-dialog.h
\
nautilus-location-entry.c
\
nautilus-location-entry.h
\
nautilus-main.c
\
...
...
src/nautilus-location-dialog.c
deleted
100644 → 0
View file @
b1589b8c
/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */
/*
* Nautilus
*
* Copyright (C) 2003 Ximian, Inc.
*
* Nautilus 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.
*
* Nautilus 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
* General Public License for more details.
*
* You should have received a copy of the GNU General Public
* License along with this program; see the file COPYING. If not,
* write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
*/
#include <config.h>
#include "nautilus-location-dialog.h"
#include <eel/eel-gtk-macros.h>
#include <eel/eel-stock-dialogs.h>
#include <gtk/gtk.h>
#include <libnautilus-private/nautilus-file-utilities.h>
#include "nautilus-location-entry.h"
#include "nautilus-desktop-window.h"
#include "nautilus-window-private.h"
#include <glib/gi18n.h>
struct
_NautilusLocationDialogDetails
{
GtkWidget
*
entry
;
NautilusWindow
*
window
;
};
static
void
nautilus_location_dialog_class_init
(
NautilusLocationDialogClass
*
class
);
static
void
nautilus_location_dialog_init
(
NautilusLocationDialog
*
dialog
);
EEL_CLASS_BOILERPLATE
(
NautilusLocationDialog
,
nautilus_location_dialog
,
GTK_TYPE_DIALOG
)
enum
{
RESPONSE_OPEN
};
static
void
nautilus_location_dialog_finalize
(
GObject
*
object
)
{
NautilusLocationDialog
*
dialog
;
dialog
=
NAUTILUS_LOCATION_DIALOG
(
object
);
g_free
(
dialog
->
details
);
EEL_CALL_PARENT
(
G_OBJECT_CLASS
,
finalize
,
(
object
));
}
static
void
open_current_location
(
NautilusLocationDialog
*
dialog
)
{
GFile
*
location
;
char
*
user_location
;
user_location
=
gtk_editable_get_chars
(
GTK_EDITABLE
(
dialog
->
details
->
entry
),
0
,
-
1
);
location
=
g_file_parse_name
(
user_location
);
nautilus_window_go_to
(
dialog
->
details
->
window
,
location
);
g_object_unref
(
location
);
g_free
(
user_location
);
}
static
void
response_callback
(
NautilusLocationDialog
*
dialog
,
int
response_id
,
gpointer
data
)
{
GError
*
error
;
switch
(
response_id
)
{
case
RESPONSE_OPEN
:
open_current_location
(
dialog
);
gtk_widget_destroy
(
GTK_WIDGET
(
dialog
));
break
;
case
GTK_RESPONSE_NONE
:
case
GTK_RESPONSE_DELETE_EVENT
:
case
GTK_RESPONSE_CANCEL
:
gtk_widget_destroy
(
GTK_WIDGET
(
dialog
));
break
;
case
GTK_RESPONSE_HELP
:
error
=
NULL
;
gtk_show_uri
(
gtk_window_get_screen
(
GTK_WINDOW
(
dialog
)),
"ghelp:user-guide#nautilus-open-location"
,
gtk_get_current_event_time
(),
&
error
);
if
(
error
)
{
eel_show_error_dialog
(
_
(
"There was an error displaying help."
),
error
->
message
,
GTK_WINDOW
(
dialog
));
g_error_free
(
error
);
}
break
;
default
:
g_assert_not_reached
();
}
}
static
void
entry_activate_callback
(
GtkEntry
*
entry
,
gpointer
user_data
)
{
NautilusLocationDialog
*
dialog
;
dialog
=
NAUTILUS_LOCATION_DIALOG
(
user_data
);
if
(
gtk_entry_get_text_length
(
GTK_ENTRY
(
dialog
->
details
->
entry
))
!=
0
)
{
gtk_dialog_response
(
GTK_DIALOG
(
dialog
),
RESPONSE_OPEN
);
}
}
static
void
nautilus_location_dialog_class_init
(
NautilusLocationDialogClass
*
class
)
{
GObjectClass
*
gobject_class
;
gobject_class
=
G_OBJECT_CLASS
(
class
);
gobject_class
->
finalize
=
nautilus_location_dialog_finalize
;
}
static
void
entry_text_changed
(
GObject
*
object
,
GParamSpec
*
spec
,
gpointer
user_data
)
{
NautilusLocationDialog
*
dialog
;
dialog
=
NAUTILUS_LOCATION_DIALOG
(
user_data
);
if
(
gtk_entry_get_text_length
(
GTK_ENTRY
(
dialog
->
details
->
entry
))
!=
0
)
{
gtk_dialog_set_response_sensitive
(
GTK_DIALOG
(
dialog
),
RESPONSE_OPEN
,
TRUE
);
}
else
{
gtk_dialog_set_response_sensitive
(
GTK_DIALOG
(
dialog
),
RESPONSE_OPEN
,
FALSE
);
}
}
static
void
nautilus_location_dialog_init
(
NautilusLocationDialog
*
dialog
)
{
GtkWidget
*
box
;
GtkWidget
*
label
;
dialog
->
details
=
g_new0
(
NautilusLocationDialogDetails
,
1
);
gtk_window_set_title
(
GTK_WINDOW
(
dialog
),
_
(
"Open Location"
));
gtk_window_set_default_size
(
GTK_WINDOW
(
dialog
),
300
,
-
1
);
gtk_window_set_destroy_with_parent
(
GTK_WINDOW
(
dialog
),
TRUE
);
gtk_container_set_border_width
(
GTK_CONTAINER
(
dialog
),
5
);
gtk_box_set_spacing
(
GTK_BOX
(
gtk_dialog_get_content_area
(
GTK_DIALOG
(
dialog
))),
2
);
box
=
gtk_hbox_new
(
FALSE
,
12
);
gtk_container_set_border_width
(
GTK_CONTAINER
(
box
),
5
);
gtk_widget_show
(
box
);
label
=
gtk_label_new_with_mnemonic
(
_
(
"_Location:"
));
gtk_widget_show
(
label
);
gtk_box_pack_start
(
GTK_BOX
(
box
),
label
,
FALSE
,
FALSE
,
0
);
dialog
->
details
->
entry
=
nautilus_location_entry_new
();
gtk_entry_set_width_chars
(
GTK_ENTRY
(
dialog
->
details
->
entry
),
30
);
g_signal_connect_after
(
dialog
->
details
->
entry
,
"activate"
,
G_CALLBACK
(
entry_activate_callback
),
dialog
);
gtk_widget_show
(
dialog
->
details
->
entry
);
gtk_label_set_mnemonic_widget
(
GTK_LABEL
(
label
),
dialog
->
details
->
entry
);
gtk_box_pack_start
(
GTK_BOX
(
box
),
dialog
->
details
->
entry
,
TRUE
,
TRUE
,
0
);
gtk_box_pack_start
(
GTK_BOX
(
gtk_dialog_get_content_area
(
GTK_DIALOG
(
dialog
))),
box
,
FALSE
,
TRUE
,
0
);
gtk_dialog_add_button
(
GTK_DIALOG
(
dialog
),
GTK_STOCK_HELP
,
GTK_RESPONSE_HELP
);
gtk_dialog_add_button
(
GTK_DIALOG
(
dialog
),
GTK_STOCK_CANCEL
,
GTK_RESPONSE_CANCEL
);
gtk_dialog_add_button
(
GTK_DIALOG
(
dialog
),
GTK_STOCK_OPEN
,
RESPONSE_OPEN
);
gtk_dialog_set_default_response
(
GTK_DIALOG
(
dialog
),
RESPONSE_OPEN
);
g_signal_connect
(
dialog
->
details
->
entry
,
"notify::text"
,
G_CALLBACK
(
entry_text_changed
),
dialog
);
g_signal_connect
(
dialog
,
"response"
,
G_CALLBACK
(
response_callback
),
dialog
);
}
GtkWidget
*
nautilus_location_dialog_new
(
NautilusWindow
*
window
)
{
NautilusWindowSlot
*
slot
;
NautilusLocationDialog
*
loc_dialog
;
GtkWidget
*
dialog
;
GFile
*
location
;
char
*
formatted_location
;
dialog
=
gtk_widget_new
(
NAUTILUS_TYPE_LOCATION_DIALOG
,
NULL
);
loc_dialog
=
NAUTILUS_LOCATION_DIALOG
(
dialog
);
if
(
window
)
{
gtk_window_set_transient_for
(
GTK_WINDOW
(
dialog
),
GTK_WINDOW
(
window
));
gtk_window_set_screen
(
GTK_WINDOW
(
dialog
),
gtk_window_get_screen
(
GTK_WINDOW
(
window
)));
loc_dialog
->
details
->
window
=
window
;
}
slot
=
window
->
details
->
active_pane
->
active_slot
;
location
=
slot
->
location
;
if
(
location
!=
NULL
)
{
if
(
NAUTILUS_IS_DESKTOP_WINDOW
(
window
))
{
formatted_location
=
g_strdup_printf
(
"%s/"
,
g_get_home_dir
());
}
else
{
formatted_location
=
g_file_get_parse_name
(
location
);
}
nautilus_location_entry_update_current_location
(
NAUTILUS_LOCATION_ENTRY
(
loc_dialog
->
details
->
entry
),
formatted_location
);
g_free
(
formatted_location
);
}
gtk_widget_grab_focus
(
loc_dialog
->
details
->
entry
);
return
dialog
;
}
void
nautilus_location_dialog_set_location
(
NautilusLocationDialog
*
dialog
,
const
char
*
location
)
{
nautilus_location_entry_update_current_location
(
NAUTILUS_LOCATION_ENTRY
(
dialog
->
details
->
entry
),
location
);
}
src/nautilus-location-dialog.h
deleted
100644 → 0
View file @
b1589b8c
/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */
/*
* Nautilus
*
* Copyright (C) 2003 Ximian, Inc.
*
* Nautilus 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.
*
* Nautilus 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
* General Public License for more details.
*
* You should have received a copy of the GNU General Public
* License along with this program; see the file COPYING. If not,
* write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
*/
#ifndef NAUTILUS_LOCATION_DIALOG_H
#define NAUTILUS_LOCATION_DIALOG_H
#include <gtk/gtk.h>
#include "nautilus-window.h"
#define NAUTILUS_TYPE_LOCATION_DIALOG (nautilus_location_dialog_get_type ())
#define NAUTILUS_LOCATION_DIALOG(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), NAUTILUS_TYPE_LOCATION_DIALOG, NautilusLocationDialog))
#define NAUTILUS_LOCATION_DIALOG_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), NAUTILUS_TYPE_LOCATION_DIALOG, NautilusLocationDialogClass))
#define NAUTILUS_IS_LOCATION_DIALOG(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), NAUTILUS_TYPE_LOCATION_DIALOG)
typedef
struct
_NautilusLocationDialog
NautilusLocationDialog
;
typedef
struct
_NautilusLocationDialogClass
NautilusLocationDialogClass
;
typedef
struct
_NautilusLocationDialogDetails
NautilusLocationDialogDetails
;
struct
_NautilusLocationDialog
{
GtkDialog
parent
;
NautilusLocationDialogDetails
*
details
;
};
struct
_NautilusLocationDialogClass
{
GtkDialogClass
parent_class
;
};
GType
nautilus_location_dialog_get_type
(
void
);
GtkWidget
*
nautilus_location_dialog_new
(
NautilusWindow
*
window
);
void
nautilus_location_dialog_set_location
(
NautilusLocationDialog
*
dialog
,
const
char
*
location
);
#endif
/* NAUTILUS_LOCATION_DIALOG_H */
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment