rpcsx/rpcs3/rpcs3qt/movie_item.h
Megamouse f115032095 Qt: implement flow layout game grid
This will allow us to properly style the grid and also remove the need to refresh the whole grid on a window resize
2023-05-06 06:31:58 +02:00

13 lines
289 B
C++

#pragma once
#include "movie_item_base.h"
#include <QTableWidgetItem>
class movie_item : public QTableWidgetItem, public movie_item_base
{
public:
movie_item();
movie_item(const QString& text, int type = Type);
movie_item(const QIcon& icon, const QString& text, int type = Type);
};