mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-20 22:05:12 +00:00
This will allow us to properly style the grid and also remove the need to refresh the whole grid on a window resize
13 lines
289 B
C++
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);
|
|
};
|