Support setting window title (as OS command)

This commit is contained in:
Keith Winstein
2011-02-01 04:14:16 -05:00
parent 2f1ccdf6eb
commit e057ea6598
9 changed files with 97 additions and 18 deletions
+9 -3
View File
@@ -73,13 +73,19 @@ namespace Parser {
public: std::string name( void ) { return std::string( "Unhook" ); }
};
class OSC_Start : public Action {
public: std::string name( void ) { return std::string( "OSC_Start" ); }
public:
std::string name( void ) { return std::string( "OSC_Start" ); }
void act_on_terminal( Terminal::Emulator *emu );
};
class OSC_Put : public Action {
public: std::string name( void ) { return std::string( "OSC_Put" ); }
public:
std::string name( void ) { return std::string( "OSC_Put" ); }
void act_on_terminal( Terminal::Emulator *emu );
};
class OSC_End : public Action {
public: std::string name( void ) { return std::string( "OSC_End" ); }
public:
std::string name( void ) { return std::string( "OSC_End" ); }
void act_on_terminal( Terminal::Emulator *emu );
};
}