~elementary-apps/pantheon-files/trunk

51 by am.monkeyd at gmail
toolbar editor + gtk actions view_switcher
1
public void marlin_toolbar_editor_dialog_show (Marlin.View.Window mvw);
43 by am.monkeyd at gmail
adding BackSpace gdk key binding
2
737 by am.monkeyd at gmail
libcore use a static GOFPreferences object, free libcore from gsetting, bind GOFPreferences with gsettings outside of libcore in marlin-application. gof_file_get_formated_time implement date-format pref.
3
[CCode (cprefix = "", lower_case_cprefix = "", cheader_filename = "marlin-global-preferences.h")]
4
namespace Preferences {
5
    public GLib.Settings settings;
1280.2.2 by Julián Unrrein
Continue with porting.
6
    public GLib.Settings marlin_icon_view_settings;
7
    public GLib.Settings marlin_list_view_settings;
8
    public GLib.Settings marlin_column_view_settings;
1459.1.15 by Jeremy Wootten
Get double click setting from gnome settings; avoid removing timeout source during callback
9
    public GLib.Settings gnome_mouse_settings;
737 by am.monkeyd at gmail
libcore use a static GOFPreferences object, free libcore from gsetting, bind GOFPreferences with gsettings outside of libcore in marlin-application. gof_file_get_formated_time implement date-format pref.
10
}
11
60.1.5 by am.monkeyd at gmail
colorize selection callbacks
12
22 by am.monkeyd at gmail
renaming vapi file: marlin.vapi
13
namespace Marlin {
798.3.12 by xapantu
Better file preview support, it could use some cache system
14
    [CCode (cheader_filename = "marlin-thumbnailer.h")]
1395 by Cody Garver
Remove using statements
15
    public class Thumbnailer : GLib.Object {
798.3.12 by xapantu
Better file preview support, it could use some cache system
16
        public static Thumbnailer get();
1459.1.41 by jeremy at elementaryos
Convert Columns view to Vala - basic functionality, no menus
17
        public bool queue_file (GOF.File file, out uint request, bool large);
18
        public bool queue_files (GLib.List<GOF.File> files, out uint request, bool large);
19
        public void dequeue (uint request);
798.3.12 by xapantu
Better file preview support, it could use some cache system
20
    }
1402.2.1 by Jeremy Wootten
merged changes from trunk - added new files, removed old files
21
417 by am.monkeyd at gmail
marlin-connect-server dialog
22
    [CCode (cprefix = "MarlinConnectServer", lower_case_cprefix = "marlin_connect_server_")]
23
    namespace ConnectServer {
24
        [CCode (cheader_filename = "marlin-connect-server-dialog.h")]
25
        public class Dialog : Gtk.Dialog {
26
            public Dialog (Gtk.Window window);
1395 by Cody Garver
Remove using statements
27
            public async bool display_location_async (GLib.File location) throws GLib.Error;
1313.1.2 by Julián Unrrein
Complete an async callback.
28
            public async bool fill_details_async (GLib.MountOperation operation,
1459.1.40 by jeremy at elementaryos
Conversion of DirectoryView to Vala - save point 1
29
                                                 string default_user,
30
                                                 string default_domain,
31
                                                 GLib.AskPasswordFlags flags);
417 by am.monkeyd at gmail
marlin-connect-server dialog
32
        }
33
    }
1382.2.1 by Jeremy Wootten
First attempt to re-write Sidebar in Vala that compiles - plenty of bugs
34
1459.1.37 by jeremy at elementaryos
Fix several bugs including handling of merge and unmerge action groups
35
    [CCode (cheader_filename = "marlin-file-utilities.h")]
36
    public void get_rename_region (string filename, out int start_offset, out int end_offset, bool select_all);
37
1459.1.40 by jeremy at elementaryos
Conversion of DirectoryView to Vala - save point 1
38
    [CCode (cheader_filename = "marlin-icon-renderer.h")]
39
    public class IconRenderer : Gtk.CellRenderer {
40
        public IconRenderer ();
1804.1.1 by Jeremy Wootten
Fix multi-select and multi-activate in single-click mode
41
        public uint get_helper_size ();
1811.1.1 by Jeremy Wootten
Code clean: tabs, trailing space, headers, comments
42
    }
1459.1.41 by jeremy at elementaryos
Convert Columns view to Vala - basic functionality, no menus
43
}