external.cpp
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:9k
源码类别:

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * external.hpp : Dialogs from other LibVLC core and other plugins
  3.  ****************************************************************************
  4.  * Copyright (C) 2009 Rémi Denis-Courmont
  5.  * Copyright (C) 2006 the VideoLAN team
  6.  *
  7.  * This program is free software; you can redistribute it and/or modify
  8.  * it under the terms of the GNU General Public License as published by
  9.  * the Free Software Foundation; either version 2 of the License, or
  10.  * (at your option) any later version.
  11.  *
  12.  * This program is distributed in the hope that it will be useful,
  13.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  15.  * GNU General Public License for more details.
  16.  *
  17.  * You should have received a copy of the GNU General Public License
  18.  * along with this program; if not, write to the Free Software
  19.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  20.  *****************************************************************************/
  21. #ifdef HAVE_CONFIG_H
  22. # include <config.h>
  23. #endif
  24. //#include "qt4.hpp"
  25. #include "external.hpp"
  26. #include "errors.hpp"
  27. #include <vlc_dialog.h>
  28. #include <QDialog>
  29. #include <QDialogButtonBox>
  30. #include <QLabel>
  31. #include <QLineEdit>
  32. #include <QMessageBox>
  33. #include <QProgressDialog>
  34. #include <QMutex>
  35. QVLCVariable::QVLCVariable (vlc_object_t *obj, const char *varname, int type)
  36.     : object (obj), name (qfu(varname))
  37. {
  38.     var_Create (object, qtu(name), type);
  39.     var_AddCallback (object, qtu(name), callback, this);
  40. }
  41. QVLCVariable::~QVLCVariable (void)
  42. {
  43.     var_DelCallback (object, qtu(name), callback, this);
  44.     var_Destroy (object, qtu(name));
  45. }
  46. int QVLCVariable::callback (vlc_object_t *object, const char *,
  47.                             vlc_value_t, vlc_value_t cur, void *data)
  48. {
  49.     QVLCVariable *self = (QVLCVariable *)data;
  50.     emit self->pointerChanged (object, cur.p_address);
  51.     return VLC_SUCCESS;
  52. }
  53. DialogHandler::DialogHandler (intf_thread_t *intf, QObject *_parent)
  54.     : QObject( _parent ), intf (intf),
  55.       critical (VLC_OBJECT(intf), "dialog-critical", VLC_VAR_ADDRESS),
  56.       login (VLC_OBJECT(intf), "dialog-login", VLC_VAR_ADDRESS),
  57.       question (VLC_OBJECT(intf), "dialog-question", VLC_VAR_ADDRESS),
  58.       progressBar (VLC_OBJECT(intf), "dialog-progress-bar", VLC_VAR_ADDRESS)
  59. {
  60.     var_Create (intf, "dialog-error", VLC_VAR_ADDRESS);
  61.     var_AddCallback (intf, "dialog-error", error, this);
  62.     connect (this, SIGNAL(error(const QString &, const QString &)),
  63.              SLOT(displayError(const QString &, const QString &)));
  64.     connect (&critical, SIGNAL(pointerChanged(vlc_object_t *, void *)),
  65.              SLOT(displayCritical(vlc_object_t *, void *)),
  66.              Qt::BlockingQueuedConnection);
  67.     connect (&login, SIGNAL(pointerChanged(vlc_object_t *, void *)),
  68.              SLOT(requestLogin(vlc_object_t *, void *)),
  69.              Qt::BlockingQueuedConnection);
  70.     connect (&question, SIGNAL(pointerChanged(vlc_object_t *, void *)),
  71.              SLOT(requestAnswer(vlc_object_t *, void *)),
  72.              Qt::BlockingQueuedConnection);
  73.     connect (&progressBar, SIGNAL(pointerChanged(vlc_object_t *, void *)),
  74.              SLOT(startProgressBar(vlc_object_t *, void *)),
  75.              Qt::BlockingQueuedConnection);
  76.     connect (this,
  77.              SIGNAL(progressBarDestroyed(QWidget *)),
  78.              SLOT(stopProgressBar(QWidget *)));
  79.     dialog_Register (intf);
  80. }
  81. DialogHandler::~DialogHandler (void)
  82. {
  83.     dialog_Unregister (intf);
  84.     var_DelCallback (intf, "dialog-error", error, this);
  85.     var_Destroy (intf, "dialog-error");
  86. }
  87. int DialogHandler::error (vlc_object_t *obj, const char *,
  88.                           vlc_value_t, vlc_value_t value, void *data)
  89. {
  90.     const dialog_fatal_t *dialog = (const dialog_fatal_t *)value.p_address;
  91.     DialogHandler *self = static_cast<DialogHandler *>(data);
  92.     if (config_GetInt (obj, "qt-error-dialogs"))
  93.         emit self->error (qfu(dialog->title), qfu(dialog->message));
  94.     return VLC_SUCCESS;
  95. }
  96. void DialogHandler::displayError (const QString& title, const QString& message)
  97. {
  98.     ErrorsDialog::getInstance (intf)->addError(title, message);
  99. }
  100. void DialogHandler::displayCritical (vlc_object_t *, void *value)
  101. {
  102.     const dialog_fatal_t *dialog = (const dialog_fatal_t *)value;
  103.     QMessageBox::critical (NULL, qfu(dialog->title), qfu(dialog->message),
  104.                            QMessageBox::Ok);
  105. }
  106. void DialogHandler::requestLogin (vlc_object_t *, void *value)
  107. {
  108.     dialog_login_t *data = (dialog_login_t *)value;
  109.     QDialog *dialog = new QDialog;
  110.     QLayout *layout = new QVBoxLayout (dialog);
  111.     dialog->setWindowTitle (qfu(data->title));
  112.     layout->setMargin (2);
  113.     /* User name and password fields */
  114.     QWidget *panel = new QWidget (dialog);
  115.     QGridLayout *grid = new QGridLayout;
  116.     grid->addWidget (new QLabel (qfu(data->message)), 0, 0, 1, 2);
  117.     QLineEdit *userLine = new QLineEdit;
  118.     grid->addWidget (new QLabel (qtr("User name")), 1, 0);
  119.     grid->addWidget (userLine, 1, 1);
  120.     QLineEdit *passLine = new QLineEdit;
  121.     passLine->setEchoMode (QLineEdit::Password);
  122.     grid->addWidget (new QLabel (qtr("Password")), 2, 0);
  123.     grid->addWidget (passLine, 2, 1);
  124.     panel->setLayout (grid);
  125.     layout->addWidget (panel);
  126.     /* OK, Cancel buttons */
  127.     QDialogButtonBox *buttonBox;
  128.     buttonBox = new QDialogButtonBox (QDialogButtonBox::Ok
  129.                                        | QDialogButtonBox::Cancel);
  130.     connect (buttonBox, SIGNAL(accepted()), dialog, SLOT(accept()));
  131.     connect (buttonBox, SIGNAL(rejected()), dialog, SLOT(reject()));
  132.     layout->addWidget (buttonBox);
  133.     /* Run the dialog */
  134.     dialog->setLayout (layout);
  135.     if (dialog->exec ())
  136.     {
  137.         *data->username = strdup (qtu(userLine->text ()));
  138.         *data->password = strdup (qtu(passLine->text ()));
  139.     }
  140.     else
  141.         *data->username = *data->password = NULL;
  142.     delete dialog;
  143. }
  144. void DialogHandler::requestAnswer (vlc_object_t *, void *value)
  145. {
  146.     dialog_question_t *data = (dialog_question_t *)value;
  147.     QMessageBox *box = new QMessageBox (QMessageBox::Question,
  148.                                         qfu(data->title), qfu(data->message));
  149.     QAbstractButton *yes = (data->yes != NULL)
  150.         ? box->addButton ("&" + qfu(data->yes), QMessageBox::YesRole) : NULL;
  151.     QAbstractButton *no = (data->no != NULL)
  152.         ? box->addButton ("&" + qfu(data->no), QMessageBox::NoRole) : NULL;
  153.     if (data->cancel != NULL)
  154.         box->addButton ("&" + qfu(data->cancel), QMessageBox::RejectRole);
  155.     box->exec ();
  156.     int answer;
  157.     if (box->clickedButton () == yes)
  158.         answer = 1;
  159.     else
  160.     if (box->clickedButton () == no)
  161.         answer = 2;
  162.     else
  163.         answer = 3;
  164.     delete box;
  165.     data->answer = answer;
  166. }
  167. QVLCProgressDialog::QVLCProgressDialog (DialogHandler *parent,
  168.                                         struct dialog_progress_bar_t *data)
  169.     : QProgressDialog (qfu(data->message),
  170.                        data->cancel ? ("&" + qfu(data->cancel)) : 0, 0, 1000),
  171.       handler (parent),
  172.       cancelled (false)
  173. {
  174.     if (data->title != NULL)
  175.         setWindowTitle (qfu(data->title));
  176.     setMinimumDuration (0);
  177.     connect (this, SIGNAL(progressed(int)), SLOT(setValue(int)));
  178.     connect (this, SIGNAL(described(const QString&)),
  179.                    SLOT(setLabelText(const QString&)));
  180.     connect (this, SIGNAL(canceled(void)), SLOT(saveCancel(void)));
  181.     data->pf_update = update;
  182.     data->pf_check = check;
  183.     data->pf_destroy = destroy;
  184.     data->p_sys = this;
  185. }
  186. QVLCProgressDialog::~QVLCProgressDialog (void)
  187. {
  188. }
  189. void QVLCProgressDialog::update (void *priv, const char *text, float value)
  190. {
  191.     QVLCProgressDialog *self = static_cast<QVLCProgressDialog *>(priv);
  192.     if (text != NULL)
  193.         emit self->described (qfu(text));
  194.     emit self->progressed ((int)(value * 1000.));
  195. }
  196. static QMutex cancel_mutex;
  197. bool QVLCProgressDialog::check (void *priv)
  198. {
  199.     QVLCProgressDialog *self = static_cast<QVLCProgressDialog *>(priv);
  200.     QMutexLocker locker (&cancel_mutex);
  201.     return self->cancelled;
  202. }
  203. void QVLCProgressDialog::destroy (void *priv)
  204. {
  205.     QVLCProgressDialog *self = static_cast<QVLCProgressDialog *>(priv);
  206.     emit self->handler->progressBarDestroyed (self);
  207. }
  208. void QVLCProgressDialog::saveCancel (void)
  209. {
  210.     QMutexLocker locker (&cancel_mutex);
  211.     cancelled = true;
  212. }
  213. void DialogHandler::startProgressBar (vlc_object_t *, void *value)
  214. {
  215.     dialog_progress_bar_t *data = (dialog_progress_bar_t *)value;
  216.     QWidget *dlg = new QVLCProgressDialog (this, data);
  217.     dlg->show ();
  218. }
  219. void DialogHandler::stopProgressBar (QWidget *dlg)
  220. {
  221.     delete dlg;
  222. }