Skip to content

Commit

Permalink
More icons update
Browse files Browse the repository at this point in the history
  • Loading branch information
eranif committed Nov 6, 2015
1 parent ac9a3b8 commit aac2488
Show file tree
Hide file tree
Showing 38 changed files with 652 additions and 132 deletions.
4 changes: 2 additions & 2 deletions LiteEditor.workspace
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@
<Project Name="WebTools" ConfigName="DebugUnicode"/>
<Project Name="HelpPlugin" ConfigName="Win_x64_Debug"/>
</WorkspaceConfiguration>
<WorkspaceConfiguration Name="Win_x64_Release" Selected="no">
<WorkspaceConfiguration Name="Win_x64_Release" Selected="yes">
<Project Name="abbreviation" ConfigName="Win_x64_Release"/>
<Project Name="CallGraph" ConfigName="Win_x64_Release"/>
<Project Name="CMakePlugin" ConfigName="Win_x64_Release"/>
Expand Down Expand Up @@ -324,7 +324,7 @@
<Project Name="wxsqlite3" ConfigName="Win_x64_Release"/>
<Project Name="ZoomNavigator" ConfigName="Win_x64_Release"/>
</WorkspaceConfiguration>
<WorkspaceConfiguration Name="Win_x64_Debug" Selected="yes">
<WorkspaceConfiguration Name="Win_x64_Debug" Selected="no">
<Project Name="abbreviation" ConfigName="Win_x64_Debug"/>
<Project Name="CallGraph" ConfigName="Win_x64_Debug"/>
<Project Name="CMakePlugin" ConfigName="Win_x64_Debug"/>
Expand Down
4 changes: 2 additions & 2 deletions LiteEditor/findresultstab.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -87,11 +87,11 @@ FindResultsTab::FindResultsTab(wxWindow* parent, wxWindowID id, const wxString&

m_tb->AddTool(XRCID("stop_search"),
_("Stop current search"),
loader.LoadBitmap(wxT("toolbars/16/build/stop")),
loader.LoadBitmap("stop"),
_("Stop current search"));
m_tb->AddTool(XRCID("recent_searches"),
_("Show Recent Searches"),
loader.LoadBitmap(wxT("output-pane/16/history")),
loader.LoadBitmap("history"),
_("Show Recent Searches"))->SetHasDropDown(true);

Connect(XRCID("stop_search"),
Expand Down
212 changes: 104 additions & 108 deletions LiteEditor/frame.cpp

Large diffs are not rendered by default.

29 changes: 9 additions & 20 deletions LiteEditor/outputtabwindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ void OutputTabWindow::CreateGUIControls()

m_vSizer = new wxBoxSizer(wxVERTICAL);

// Create the default scintilla control
// Create the default scintilla control
#ifdef __WXGTK__
m_sci = new wxStyledTextCtrl(this, wxID_ANY, wxDefaultPosition, wxDefaultSize, wxRAISED_BORDER);
#else
Expand All @@ -188,39 +188,28 @@ void OutputTabWindow::CreateGUIControls()
BitmapLoader* bmpLoader = PluginManager::Get()->GetStdIcons();

// Create the toolbar
m_tb = new wxAuiToolBar(
this, wxID_ANY, wxDefaultPosition, wxDefaultSize, wxAUI_TB_PLAIN_BACKGROUND);
m_tb = new wxAuiToolBar(this, wxID_ANY, wxDefaultPosition, wxDefaultSize, wxAUI_TB_PLAIN_BACKGROUND);
m_tb->SetToolBitmapSize(wxSize(16, 16));

m_tb->AddTool(XRCID("hold_pane_open"),
_("Keep open"),
bmpLoader->LoadBitmap(wxT("output-pane/16/ToolPin")),
bmpLoader->LoadBitmap("ToolPin"),
_("Don't close this pane when an editor gets focus"),
wxITEM_CHECK);

m_tb->AddTool(XRCID("scroll_on_output"),
_("Scroll on Output"),
wxXmlResource::Get()->LoadBitmap(wxT("link_editor")),
bmpLoader->LoadBitmap("link_editor"),
_("Scroll on Output"),
wxITEM_CHECK);
m_tb->ToggleTool(XRCID("scroll_on_output"), m_outputScrolls);

m_tb->AddTool(XRCID("word_wrap_output"),
_("Word Wrap"),
wxXmlResource::Get()->LoadBitmap(wxT("word_wrap")),
_("Word Wrap"),
wxITEM_CHECK);

m_tb->AddTool(
XRCID("clear_all_output"), _("Clear All"), bmpLoader->LoadBitmap(wxT("output-pane/16/clear")), _("Clear All"));
XRCID("word_wrap_output"), _("Word Wrap"), bmpLoader->LoadBitmap("word_wrap"), _("Word Wrap"), wxITEM_CHECK);

m_tb->AddTool(XRCID("collapse_all"),
_("Fold All Results"),
wxXmlResource::Get()->LoadBitmap(wxT("fold_airplane")),
_("Fold All Results"));

m_tb->AddTool(
XRCID("repeat_output"), _("Repeat"), bmpLoader->LoadBitmap(wxT("output-pane/16/reload")), _("Repeat"));
m_tb->AddTool(XRCID("clear_all_output"), _("Clear All"), bmpLoader->LoadBitmap("clear"), _("Clear All"));
m_tb->AddTool(XRCID("collapse_all"), _("Fold All Results"), bmpLoader->LoadBitmap("fold"), _("Fold All Results"));
m_tb->AddTool(XRCID("repeat_output"), _("Repeat"), bmpLoader->LoadBitmap("debugger_restart"), _("Repeat"));

m_tb->Realize();

Expand Down
Binary file modified Runtime/codelite-bitmaps.zip
Binary file not shown.
Binary file added bitmaps/16-ToolPin.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added bitmaps/[email protected]
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added bitmaps/16-clear.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added bitmaps/[email protected]
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added bitmaps/16-fold.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added bitmaps/[email protected]
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added bitmaps/16-history.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added bitmaps/[email protected]
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added bitmaps/16-link_editor.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added bitmaps/[email protected]
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added bitmaps/16-word_wrap.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added bitmaps/[email protected]
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added bitmaps/24-ToolPin.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added bitmaps/[email protected]
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added bitmaps/24-clear.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added bitmaps/[email protected]
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added bitmaps/24-fold.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added bitmaps/[email protected]
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added bitmaps/24-history.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added bitmaps/[email protected]
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added bitmaps/24-link_editor.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added bitmaps/[email protected]
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added bitmaps/24-word_wrap.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added bitmaps/[email protected]
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions svgs/ToolPin.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
264 changes: 264 additions & 0 deletions svgs/clear.svg
3 changes: 3 additions & 0 deletions svgs/create-humanity-icons.php
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,9 @@ public function copy() {
$IN_FILES[] = new ImageFile("actions\\24\\go-down.svg", "next.svg");
$IN_FILES[] = new ImageFile("actions\\24\\go-next.svg", "show_current_line.svg");

// Others
$IN_FILES[] = new ImageFile("actions\\24\\document-open-recent.svg", "history.svg");

/** @var ImageFile */
foreach($IN_FILES as $file) {
$file->copy();
Expand Down
1 change: 1 addition & 0 deletions svgs/fold.svg
Loading

0 comments on commit aac2488

Please sign in to comment.