forked from eranif/codelite
-
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.
Tail plugin: the tail panel can now detach from the output notebook i…
…nto a separatea frame
- Loading branch information
Eran Ifrah
committed
Nov 7, 2016
1 parent
3174cec
commit 70ecdd1
Showing
17 changed files
with
1,058 additions
and
565 deletions.
There are no files selected for viewing
Binary file not shown.
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 |
---|---|---|
@@ -0,0 +1,17 @@ | ||
#include "TailFrame.h" | ||
#include "tail.h" | ||
|
||
TailFrame::TailFrame(wxWindow* parent, Tail* plugin) | ||
: TailFrameBase(parent) | ||
, m_plugin(plugin) | ||
{ | ||
} | ||
|
||
TailFrame::~TailFrame() {} | ||
|
||
void TailFrame::OnClose(wxCloseEvent& event) | ||
{ | ||
m_plugin->CallAfter(&Tail::DockTailWindow); | ||
m_plugin->m_view = NULL; | ||
event.Skip(); | ||
} |
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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
#ifndef TAILFRAME_H | ||
#define TAILFRAME_H | ||
#include "TailUI.h" | ||
|
||
class Tail; | ||
class TailFrame : public TailFrameBase | ||
{ | ||
Tail* m_plugin; | ||
|
||
public: | ||
TailFrame(wxWindow* parent, Tail* plugin); | ||
virtual ~TailFrame(); | ||
protected: | ||
virtual void OnClose(wxCloseEvent& event); | ||
}; | ||
#endif // TAILFRAME_H |
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
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
Oops, something went wrong.