forked from elementary/code
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bring folder manager plugin into core (elementary#350)
- Loading branch information
1 parent
9a1b77c
commit 2e97091
Showing
20 changed files
with
83 additions
and
226 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 0 additions & 10 deletions
10
data/io.elementary.code.plugins.folder-manager.gschema.xml
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,7 +18,7 @@ | |
* Authored by: Julien Spautz <[email protected]>, Andrei-Costin Zisu <[email protected]> | ||
*/ | ||
|
||
namespace Scratch.Plugins.FolderManager { | ||
namespace Scratch.FolderManager { | ||
|
||
/** | ||
* Class for easily dealing with files. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,7 +18,7 @@ | |
* Authored by: Julien Spautz <[email protected]>, Andrei-Costin Zisu <[email protected]> | ||
*/ | ||
|
||
namespace Scratch.Plugins.FolderManager { | ||
namespace Scratch.FolderManager { | ||
/** | ||
* Normal item in the source list, represents a textfile. | ||
*/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,12 +18,12 @@ | |
* Authored by: Julien Spautz <[email protected]>, Andrei-Costin Zisu <[email protected]> | ||
*/ | ||
|
||
namespace Scratch.Plugins.FolderManager { | ||
namespace Scratch.FolderManager { | ||
/** | ||
* SourceList that displays folders and their contents. | ||
*/ | ||
internal class FileView : Granite.Widgets.SourceList, Code.PaneSwitcher { | ||
private Settings settings; | ||
private FolderManagerSettings settings; | ||
|
||
public signal void select (string file); | ||
|
||
|
@@ -40,7 +40,7 @@ namespace Scratch.Plugins.FolderManager { | |
|
||
item_selected.connect (on_item_selected); | ||
|
||
settings = new Settings (); | ||
settings = new FolderManagerSettings (); | ||
} | ||
|
||
private void on_item_selected (Granite.Widgets.SourceList.Item? item) { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,7 +18,7 @@ | |
* Authored by: Julien Spautz <[email protected]>, Andrei-Costin Zisu <[email protected]> | ||
*/ | ||
|
||
namespace Scratch.Plugins.FolderManager { | ||
namespace Scratch.FolderManager { | ||
/** | ||
* Expandable item in the source list, represents a folder. | ||
* Monitored for changes inside the directory. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,7 +18,7 @@ | |
* Authored by: Julien Spautz <[email protected]>, Andrei-Costin Zisu <[email protected]> | ||
*/ | ||
|
||
namespace Scratch.Plugins.FolderManager { | ||
namespace Scratch.FolderManager { | ||
/** | ||
* Common abstract class for file and folder items. | ||
*/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,7 +18,7 @@ | |
* Authored by: Julien Spautz <[email protected]>, Andrei-Costin Zisu <[email protected]> | ||
*/ | ||
|
||
namespace Scratch.Plugins.FolderManager { | ||
namespace Scratch.FolderManager { | ||
internal class MainFolderItem : FolderItem { | ||
public signal void closed (); | ||
|
||
|
Oops, something went wrong.