-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsearchlrcdlg.h
More file actions
50 lines (44 loc) · 1.05 KB
/
Copy pathsearchlrcdlg.h
File metadata and controls
50 lines (44 loc) · 1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#ifndef SEARCHLRCDLG_H
#define SEARCHLRCDLG_H
#include"mynetwork.h"
#include <QDialog>
#include<QLineEdit>
#include<QList>
#include<QListWidgetItem>
#include<mynetwork.h>
namespace Ui {
class searchlrcdlg;
}
class searchlrcdlg : public QDialog
{
Q_OBJECT
public:
explicit searchlrcdlg(QWidget *parent = 0);
QLineEdit *ledit;
QPushButton *serbtn;
QString songtotalname;
~searchlrcdlg();
signals:
void getlrcshow(QByteArray);
private slots:
void on_pushButton_exit_clicked();
void slotbtn();
void analyieslrc(QNetworkReply*);
void lrcsearslot(QNetworkReply*);
void on_listWidget_itemDoubleClicked(QListWidgetItem *item);
void returnpress();
public slots:
void setBk(QString);
protected:
void mousePressEvent(QMouseEvent *event);
void mouseReleaseEvent(QMouseEvent *event);
void mouseMoveEvent(QMouseEvent *event);
private:
Ui::searchlrcdlg *ui;
QList <QString> listlrc;
bool m_MousePressed;
QPoint m_MousePos;
QPoint m_WindowPos;
QLabel *loadlab;
};
#endif // SEARCHLRCDLG_H