网址:http://www.uupoop.com/
中文界面,简单易用,其中的“在线 PS 图片”与 Photoshop 有几分类似
技巧:若感觉操作界面不够大,按下 F11 可使浏览器全屏
2、Sumo Paint
网址:http://www.sumopaint.com/app/
如果第一个网站还不能满足您 PS 的要求,此处是不错的选择,英文界面、功能强大,看起来更像 Photoshop 了~
2、Sumo Paint
网址:http://www.sumopaint.com/app/
如果第一个网站还不能满足您 PS 的要求,此处是不错的选择,英文界面、功能强大,看起来更像 Photoshop 了~
利用QCoreApplication 类中的hasPendingEvents方法。
该方法在程序当程序处理事件是返回true,否则返回false。
因为我程序新建窗口比较多,为了提高程序启动速度,故想在讲窗口创建放在程序闲暇时候。则在
某一个类中处理如下
在BootWindow类的构造函数中起一个定时器
setTimer(2);
实现:
void BootWindow::timerEvent(QTimerEvent *event)
{
if(QCoreApplication::hasPendingEvents()==false){
这里可以写你需要的处理的事件
处理完后
killTimer( event->timerId());
}
这里我们就可以加速程序处理了。利用程序闲暇时间来处理重要的事情。
之前UBUNTU8.04安裝KSCOPE時,
直接用APT-GET的指令即可
但安裝9.10的就不能這樣用了(不知道為什麼),
直 接手動安裝吧
下載KSCOPE的程式下來裝吧
http://sourceforge.net/projects/kscope/files/
聴 說新版的不好用,所以就下載1.6.2版的,這好像是1.9之前的最終版
下載完成後解壓
tar zxvf kscope-1.6.2.tar.gz
cd kscope-1.6.2
執行 ./configure
結果如下
checking build system type… i686-pc-linux-gnu
checking host system type… i686-pc-linux-gnu
checking target system type… i686-pc-linux-gnu
checking for a BSD-compatible install… /usr/bin/install -c
checking for -p flag to install… yes
checking whether build environment is sane… yes
checking for a thread-safe mkdir -p… /bin/mkdir -p
checking for gawk… no
checking for mawk… mawk
checking whether make sets $(MAKE)… yes
checking for kde-config… not found
configure: error: The important program kde-config was not found!
Please check whether you installed KDE correctly.
最後兩行有個錯誤訊息
那是因為少了kdelibs4c2a這個套件
直接 sudo apt-get install kdelibs4c2a安裝即可
這套件安裝的時間有點久…….
主要是因為我不知道國 內映射檔的網址
所以要下載很久
2.
sudo aptitude install build-essential
this will download and install the essential lib that is build related, such as gcc g++
but that is for other Linux distribution system, my is Ubuntu, so we should install the needed libs
sudo aptitude install build-essential
this will download and install the essential lib that is build related, such as gcc g++ ….
出来工作了,才发现学校学的东西太少了。很多东西得自己去悟。没有人指导,我总想认识些高手,
能告诉我我在这个时候需要学那些,需要做那些。
我很浮躁,到现在了,我这个老毛病还是这样,总想着要去做一些事,但是总找到不时间或者浪费时间
去做另一个更浪费时间的事。
就拿学英文来说,我是迫切的想掌握好这个工具。看到并发现它的实用,我总在说要学好这个,到了现在
一直都没去认真去履行这件事。
现在不想学校那样轻松了。天天上班,下班回来聊聊天,一天就这么过去了。人生就是这么匆匆而过。
正如我感叹这时间过的,总是觉得生命应该精彩一点。但真的现实中发现我自己被老多东西束缚了。我動
不起来了,我喜欢早晨初生的太阳,我是那样的想呼吸那清新的空气,喜欢闻闻阳光的香味。喜欢有点凉飕飕的
感觉。
一切都好像很平常。忽然感觉自己这段时间的心态不太好。脸色也不好。心情也没有那么好了。
什么理想抱负,什么狗屁金钱爱情。
现在我想认真看看书。最近发现很多好书。以前要是好好看看多好。
明天是否来临?我要早起去看初生的阳光。
QML Rectangle Element Reference
本文章原创于www.hacktao.com 转载请注明出处。
Rectangle项允许你加入一个场景。
属性
| · border.color : color· border.width : int
· color : color |
· gradient : Gradient· radius : real
· smooth : bool |
详细描述
Rectangle项有一个坚实的填充(彩色)和一个可选的边界。你可以用通过用半径(radius)
来创建圆角。
Rectangle {
width: 100
height: 100
color: ”red”
border.color: ”black”
border.width: 5
radius: 10 //半径
}

属性文档
| border.width : int |
| border.color : color |
Width和color用于绘制矩形的边界。
Width为1创建一个细线。对于没有线,使用0或透明色的宽度。
为了保持平稳(而不是模糊的边界),奇数宽度矩形导致被涂在半像素偏移;
| color : color |