
- Toggle the 'Custom shownames' tickbox to switch between real names and custom shownames. - Type `/save_chatlog` in the OOC to export your IC chatlog into a file. - Exporting the chatlog will append the date and time of the message, too.
32 lines
640 B
C++
32 lines
640 B
C++
#ifndef CHATLOGPIECE_H
|
|
#define CHATLOGPIECE_H
|
|
|
|
#include <QString>
|
|
#include <QDateTime>
|
|
|
|
class chatlogpiece
|
|
{
|
|
public:
|
|
chatlogpiece();
|
|
chatlogpiece(QString p_name, QString p_showname, QString p_message, bool p_song);
|
|
chatlogpiece(QString p_name, QString p_showname, QString p_message, bool p_song, QDateTime p_datetime);
|
|
|
|
QString get_name();
|
|
QString get_showname();
|
|
QString get_message();
|
|
bool get_is_song();
|
|
QDateTime get_datetime();
|
|
QString get_datetime_as_string();
|
|
|
|
QString get_full();
|
|
|
|
private:
|
|
QString name;
|
|
QString showname;
|
|
QString message;
|
|
QDateTime datetime;
|
|
bool is_song;
|
|
};
|
|
|
|
#endif // CHATLOGPIECE_H
|