ドキュメント
TdComponent
< 1 min read
TdComponentはテーブルのデータを表示するコンポーネントです。
td_component.hpp
class TdComponent : public Component
{
public:
using Td = spa::gui::Td<>;
public:
TdComponent
(
MOD mod,
FcComponent component
);
~TdComponent() = default;
void configure();
private:
std::shared_ptr<Td> td;
FcComponent component;
};
componentにはテーブルに表示するコンポーネントを指定します。
コメントを残す