This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#ifndef QTABWIDGETEXT | |
#define QTABWIDGETEXT | |
#include <QTabWidget> | |
/** | |
* @brief QTabWidget which allow to set the current tab by its name | |
*/ | |
class QTabWidgetExt : public QTabWidget | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
; The VCRedistNeedsInstall function checks if a given version of VC++ is already installed | |
; Modify the function with one (or more) of the VC_* constants to suit your version | |
[Run] | |
Filename: "{app}\redist\vcredist_x86.exe"; Parameters: "/q /norestart /q:a /c:""VCREDI~3.EXE /q:a /c:""""msiexec /i vcredist.msi /qn"""" """; Check: VCRedistNeedsInstall; WorkingDir: {app}\redist; StatusMsg: Installing VC++ 2013 Redistributables... | |
[Code] | |
#IFDEF UNICODE | |
#DEFINE AW "W" | |
#ELSE |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#ifndef QBUTTONGROUPEXT | |
#define QBUTTONGROUPEXT | |
#include <QButtonGroup> | |
#include <QAbstractButton> | |
/** | |
* @brief QButtonGroup which allow to set the checked radio button by its id | |
*/ | |
class QButtonGroupExt : public QButtonGroup |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#ifndef QLINEEDITCOLOR | |
#define QLINEEDITCOLOR | |
#include <QtWidgets/QLineEdit> | |
#include <QColorDialog> | |
#include <QEvent> | |
/** | |
* @brief A QLineEdit combined with a QColorDialog | |
* @signal colorChanged(QColor) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
; AutoHotkey Media Keys | |
^!Space::Send {Media_Play_Pause} | |
^!Left::Send {Media_Prev} | |
^!Right::Send {Media_Next} | |
^!NumpadMult::Send {Volume_Mute} | |
^!NumpadAdd::Send {Volume_Up} | |
^!NumpadSub::Send {Volume_Down} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Squaricon | |
* | |
* @description: PHP image hash generator | |
* | |
* @author: Damien "Mistic" Sorel - http://strangeplanet.fr | |
* @license: MIT | |
* @version: 2.0.0 | |
* @date: 21/05/2015 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Identicon++ | |
* | |
* @description: PHP implementation of Don Park Identicon algorithm with additional shapes and variations. | |
* | |
* @author: Damien "Mistic" Sorel - http://strangeplanet.fr | |
* @license: MIT | |
* @version: 2.0.0 | |
* @date: 21/05/2015 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* jQuery amusesMoi! 1.0 | |
* | |
* Copyright 2012-2013, Damien "Mistic" Sorel | |
* http://www.strangeplanet.fr | |
* | |
* License: | |
* MIT and GPL dual licensing | |
* | |
* Depends: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.textareaLinesNumbers { | |
position: relative; | |
} | |
.textareaLinesNumbers textarea.linesContainer { | |
display:block; | |
border:none; | |
position:absolute; | |
overflow:hidden; | |
text-align:right; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*! | |
* jQuery imageExplode 1.0 | |
* | |
* Copyright 2013, Damien "Mistic" Sorel | |
* http://www.strangeplanet.fr | |
* | |
* thanks to Ryan Florence for the main algorythm | |
* http://ryanflorence.com/cssanimation | |
* | |
* Dual licensed under the MIT or GPL Version 3 licenses. |