mirror of
				https://github.com/rad4day/Waybar.git
				synced 2025-11-04 09:42:42 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
		
			391 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			391 B
		
	
	
	
		
			C++
		
	
	
	
	
	
#pragma once
 | 
						|
 | 
						|
#include <gtkmm/widget.h>
 | 
						|
#include <gtkmm/box.h>
 | 
						|
#include <json/json.h>
 | 
						|
#include "AModule.hpp"
 | 
						|
#include "bar.hpp"
 | 
						|
#include "factory.hpp"
 | 
						|
 | 
						|
namespace waybar {
 | 
						|
 | 
						|
class Group : public AModule {
 | 
						|
 public:
 | 
						|
  Group(const std::string&, const Bar&, const Json::Value&);
 | 
						|
  ~Group() = default;
 | 
						|
  auto update() -> void;
 | 
						|
  operator Gtk::Widget &();
 | 
						|
  Gtk::Box box;
 | 
						|
};
 | 
						|
 | 
						|
}  // namespace waybar
 |