Skip to content
Snippets Groups Projects
Select Git revision
  • 476d0bca4f7a11f55ad3a9cf3bf0248f4d6fead9
  • master default
  • windows_ci_static
  • c_link
  • cpack
  • windows_ci
  • cert_pk_id
  • proxy_push_result
  • cnode_put_id
  • update-windows-build
  • proxy
  • resubscribe_on_token_change
  • actions
  • client_mode
  • llhttp
  • search_node_add
  • crypto_aes_gcm_argon2
  • ios_notifications
  • log_fmt
  • v2asio
  • fix-msvc
  • v3.4.0
  • v3.3.1
  • v3.3.1rc1
  • v3.3.1rc2
  • v3.3.0
  • v3.2.0
  • v3.1.11
  • v3.1.10
  • v3.1.9
  • v3.1.8.2
  • v3.1.8.1
  • v3.1.8
  • v3.1.7
  • v3.1.6
  • v3.1.5
  • v3.1.4
  • v3.1.3
  • v3.1.2
  • v3.1
  • v3.0.1
41 results

dht_proxy_client.cpp

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    ConfigurationPanel.ui.h 14.90 KiB
    /*
     *  Copyright (C) 2004-2006 Savoir-Faire Linux inc.
     *  Author: Yan Morin <yan.morin@savoirfairelinux.com>
     *  Author: Jean-Philippe Barrette-LaPierre
     *             <jean-philippe.barrette-lapierre@savoirfairelinux.com>
     *                                                                              
     *  This program is free software; you can redistribute it and/or modify
     *  it under the terms of the GNU General Public License as published by
     *  the Free Software Foundation; either version 2 of the License, or
     *  (at your option) any later version.
     *                                                                              
     *  This program is distributed in the hope that it will be useful,
     *  but WITHOUT ANY WARRANTY; without even the implied warranty of
     *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     *  GNU General Public License for more details.
     *                                                                              
     *  You should have received a copy of the GNU General Public License
     *  along with this program; if not, write to the Free Software
     *   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
     */
    
    /****************************************************************************
    ** ui.h extension file, included from the uic-generated form implementation.
    **
    ** If you want to add, delete, or rename functions or slots, use
    ** Qt Designer to update this file, preserving your code.
    **
    ** You should not define a constructor or destructor in this file.
    ** Instead, write your code in functions called init() and destroy().
    ** These will automatically be called by the form's constructor and
    ** destructor.
    *****************************************************************************/
    #include <qdir.h>
    #include <qmessagebox.h>
    #include <qstringlist.h>
    #include <qcolor.h>
    #include <qvbuttongroup.h>
    
    #include "globals.h"
    #include "ConfigurationManager.hpp"
    #include "DebugOutput.hpp"
    #include "QjListBoxPixmap.hpp"
    #include "SkinManager.hpp"
    #include "TransparentWidget.hpp"
    
    #define SIGNALISATIONS_IMAGE "signalisations.png"
    #define AUDIO_IMAGE "audio.png"
    #define PREFERENCES_IMAGE "preferences.png"
    #define ABOUT_IMAGE "about.png"
    
    
    void ConfigurationPanel::init()
    {
      DebugOutput::instance() << "ConfigurationPanel::init()\n"; 
        lblError->hide();
        Tab_Signalisations->show();
        Tab_Audio->hide();
        Tab_Preferences->hide();
        Tab_About->hide();
    
      /*
        // For reading settings at application startup
         // List skin choice from "skins" directory
       QDir dir(Skin::getPath(QString(SKINDIR)));
       if ( !dir.exists() ) {
            _debug("\nCannot find 'skins' directory\n");
    		return;
        } else {
        dir.setFilter( QDir::Dirs | QDir::NoSymLinks);
        dir.setSorting( QDir::Name );