scrollbox scrollbar styling
admin | xul | 2014-08-01
http://codeverge.com/mozilla.dev.tech.xul/scrollbox-scrollbar-styling-1.9/1552351
[阅读全文]
change xul browser scrollbar style
admin | xul | 2014-08-01
http://livepipe.net/control/scrollbar
https://github.com/eastridge/livepipe-ui/blob/master/src/scrollbar.js
[阅读全文]
How to hide the #titlebar-buttonbox-container
admin | xul | 2014-08-01
http://forums.mozillazine.org/viewtopic.php?f=38&t=2573693
http://www.firefox.net.cn/read-35532
https://addons.mozilla.org/en-US/firefox/addon/hide-caption-titlebar-plus-sma/
[阅读全文]
xulrunner No system Borders,and win7 effect
admin | xul | 2014-07-30
1.修改xulrunner 配置,xul 等 结果(失败)
│ application.ini
│ chrome.manifest
│ start.bat
│
├─chrome
│ │ chrome.manifest
│ │
│ └─content
│ main.css
│ main.js
│ main.xul
│ main2.xul
│
├─components
└─defaults
└─preferences
... [阅读全文]
xul browser scrollbar style
admin | xul | 2014-07-30
http://stackoverflow.com/questions/9496790/how-to-use-custom-scrollbar-in-firefox
http://livepipe.net/control/scrollbar
[阅读全文]
Qt Windows Extras Overview
admin | Qt Gui | 2014-07-28
http://qt-project.org/doc/qt-5/qtwinextras-overview.html
[阅读全文]
discuz 修复X3.1 QQ互联登陆出现(1054) Unknown column ‘conuintoken’ in ‘field list’
admin | Php | 2014-07-22
这个可能很多人都看到了吧,其实就是数据表common_member_connect少了一个字段conuintoken。添加好就行,字段约束 为char(32)。
简单的修复方法为:
1、修改config/config_global.php文件查找下面代码把0改为1,开启后台直接运行SQL
$_config['admincp']['runquery'] = ’0′;
复制代码
2、在后台后台——站长——数据库——升级,粘贴以... [阅读全文]
windows下安装python虚拟机环境virtualenv
admin | python | 2014-07-11
下载安装Python2.7.3
到python官方网站下载windows版本的python,点击可以直接安装,这里我安装在D:\Python27下
安装setuptools
为了支持easy_install等脚本,安装完Python后要安装setuptools-0.6c11.win32-py2.7.exe
然后把python的目录添加到Windows的环境变量path中。
C++
;D:\Python27;D:\Python27\Scripts
... [阅读全文]
js1.7 let
admin | JavaScript | 2014-07-09
let 可用来管理数据和函数的区块作用域,在此有许多种方式︰
* let 语法 可提供在区块的作用域内部链接值与变量的方式,而不影响区块外部相同名称的变量的值。
* let 表达式 可让你只对单一的表达式确立变数的作用域。
* let 定义 可定义区块使变量的作用域受限于这个区块。这个语法和 var 语法的用法非常类似。
* 你也可以使用 let 来... [阅读全文]
get hwnd from QWidget
admin | Qt Gui | 2014-07-08
First:
C++
static QWindow* windowForWidget(const QWidget* widget)
{
QWindow* window = widget->windowHandle();
if (window)
return window;
const QWidget* nativeParent = widget->nativeParentWidget();
if (nativeParent)
return nativeParent->windowHandle();
... [阅读全文]