8cf88ffc58
Also changes the text of the jar mod addition button. It should be clearer what it does and hopefully will not confuse as many people.
12 lines
404 B
C++
12 lines
404 B
C++
#pragma once
|
|
|
|
#include <QWidget>
|
|
|
|
namespace GuiUtil
|
|
{
|
|
QString uploadPaste(const QString &text, QWidget *parentWidget);
|
|
void setClipboardText(const QString &text);
|
|
QStringList BrowseForFiles(QString context, QString caption, QString filter, QString defaultPath, QWidget *parentWidget);
|
|
QString BrowseForFile(QString context, QString caption, QString filter, QString defaultPath, QWidget *parentWidget);
|
|
}
|