mirror of https://github.com/YGGverse/Yoda.git
yggverse
3 months ago
6 changed files with 46 additions and 0 deletions
@ -0,0 +1,16 @@ |
|||||||
|
#include "request.hpp" |
||||||
|
|
||||||
|
using namespace app::browser::main::tab::data::navbar; |
||||||
|
|
||||||
|
Request::Request() |
||||||
|
{ |
||||||
|
set_placeholder_text( |
||||||
|
_("URL or search term...") |
||||||
|
); |
||||||
|
|
||||||
|
set_hexpand( |
||||||
|
true |
||||||
|
); |
||||||
|
} |
||||||
|
|
||||||
|
Request::~Request() = default; |
@ -0,0 +1,19 @@ |
|||||||
|
#ifndef APP_BROWSER_MAIN_TAB_DATA_NAVBAR_REQUEST_HPP |
||||||
|
#define APP_BROWSER_MAIN_TAB_DATA_NAVBAR_REQUEST_HPP |
||||||
|
|
||||||
|
#include <glibmm/i18n.h> |
||||||
|
#include <gtkmm/entry.h> |
||||||
|
|
||||||
|
namespace app::browser::main::tab::data::navbar |
||||||
|
{ |
||||||
|
class Request : public Gtk::Entry |
||||||
|
{ |
||||||
|
public: |
||||||
|
|
||||||
|
Request(); |
||||||
|
|
||||||
|
~Request(); |
||||||
|
}; |
||||||
|
} |
||||||
|
|
||||||
|
#endif // APP_BROWSER_MAIN_TAB_DATA_NAVBAR_REQUEST_HPP
|
Loading…
Reference in new issue