0.13
This commit is contained in:
parent
2336452447
commit
1dee971812
4 changed files with 15 additions and 6 deletions
|
@ -170,13 +170,13 @@ void player_gui::on_lineEdit_textChanged(const QString &arg1){
|
||||||
std::cout << "suchen" << std::endl;
|
std::cout << "suchen" << std::endl;
|
||||||
ui->listWidget->clear();
|
ui->listWidget->clear();
|
||||||
for(int x=1;x<=this->Sender;x++){
|
for(int x=1;x<=this->Sender;x++){
|
||||||
if(this->Name[x].contains(arg1)){
|
this->Name_tmp = this->Name[x].toLower();
|
||||||
|
if(this->Name_tmp.contains(arg1.toLower())){
|
||||||
ui->listWidget->addItem(this->Name[x]);
|
ui->listWidget->addItem(this->Name[x]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
void player_gui::on_listWidget_itemClicked(QListWidgetItem *item)
|
void player_gui::on_listWidget_itemClicked(QListWidgetItem *item){
|
||||||
{
|
|
||||||
std::cout << item->text().toStdString() << std::endl;
|
std::cout << item->text().toStdString() << std::endl;
|
||||||
this->play(item);
|
this->play(item);
|
||||||
}
|
}
|
||||||
|
|
|
@ -37,6 +37,7 @@ private:
|
||||||
int sender_ausgeben(void);
|
int sender_ausgeben(void);
|
||||||
int Sender;
|
int Sender;
|
||||||
QString Name[10000];
|
QString Name[10000];
|
||||||
|
QString Name_tmp;
|
||||||
QString URL[10000];
|
QString URL[10000];
|
||||||
QString ip;
|
QString ip;
|
||||||
QNetworkAccessManager *manager;
|
QNetworkAccessManager *manager;
|
||||||
|
|
|
@ -80,8 +80,8 @@
|
||||||
<rect>
|
<rect>
|
||||||
<x>0</x>
|
<x>0</x>
|
||||||
<y>0</y>
|
<y>0</y>
|
||||||
<width>1210</width>
|
<width>1160</width>
|
||||||
<height>21</height>
|
<height>20</height>
|
||||||
</rect>
|
</rect>
|
||||||
</property>
|
</property>
|
||||||
<widget class="QMenu" name="menuProgramm">
|
<widget class="QMenu" name="menuProgramm">
|
||||||
|
|
10
vlc-vdr.pro
10
vlc-vdr.pro
|
@ -4,12 +4,20 @@ QT += \
|
||||||
widgets \
|
widgets \
|
||||||
network
|
network
|
||||||
|
|
||||||
|
QMAKE_CFLAGS_RELEASE += -Os -momit-leaf-frame-pointer
|
||||||
|
|
||||||
|
QMAKE_LFLAGS += -static -static-libgcc
|
||||||
|
|
||||||
CONFIG += \
|
CONFIG += \
|
||||||
c++11 \
|
c++11 \
|
||||||
static
|
static
|
||||||
|
|
||||||
|
DEFINES += \
|
||||||
|
VLC_STATICLIB \
|
||||||
|
QT_STATIC_BUILD
|
||||||
|
|
||||||
LIBS += \
|
LIBS += \
|
||||||
-lvlc
|
-lvlc.dll
|
||||||
|
|
||||||
SOURCES += \
|
SOURCES += \
|
||||||
main.cpp \
|
main.cpp \
|
||||||
|
|
Loading…
Add table
Reference in a new issue