资源简介
非常好的扫雷项目,注解清晰。用跨平台的工具qt 实现。
自己写的,项目有详细注释。

代码片段和文件信息
#include “cellitem.h“
#include “sweepminesscene.h“
#include “sweepminesapp.h“
#include “field.h“
#include
QPixmap * CellItem::initial = 0;
QPixmap * CellItem::blank = 0;
QPixmap * CellItem::question = 0;
QPixmap * CellItem::flag = 0;
QPixmap * CellItem::explode = 0;
QPixmap * CellItem::digits[9] = {0};
unsigned CellItem::refCount = 0;
CellItem::CellItem(int xint y)
:cx(x)
cy(y)
state(CIS_INITIAL)
{
refCount++;
if(refCount == 1)//在第一个items对像创建时,生成图片对像
{
initial = new QPixmap(“:/image/initial.jpg“);
blank = new QPixmap(“:/image/blank.jpg“);
question = new QPixmap(“:/image/question.jpg“);
flag = new QPixmap(“:/image/flag.jpg“);
explode = new QPixmap(“:/image/explode.jpg“);
QString preFix(“:/image/“);
QString postFix(“.jpg“);
QString fileNamenum;
for(int i=1; i<9; i++)
{
num.setNum(i);
fileName = preFix;
fileName += num;
fileName += postFix;
digits[i] = new QPixmap(fileName);
}
}
setPixmap(*initial);
}
CellItem::~CellItem()
{
refCount--;
if(refCount == 0)//在最后一个items对像销毁时,销毁图片对像
{
delete initial;
delete blank;
delete question;
delete flag;
delete explode;
for(int i=1; i<9; i++)
{
delete digits[i];
}
}
}
void CellItem::mousePressEvent(QGraphicsSceneMouseEvent *event)
{
if(state == CIS_SWEPT)
return ;
switch(event->button())
{
case Qt::LeftButton:
switch(state)
{
case CIS_INITIAL:
setPixmap(*blank);
break;
case CIS_FLAG:
return ;
case CIS_QUESTION:
setPixmap(*blank);
state = CIS_INITIAL;
break;
default:
break;
}
break;
case Qt::RightButton:
{
switch(state)
{
case CIS_INITIAL:
setPixmap(*flag);
state = CIS_FLAG;
break;
case CIS_FLAG:
setPixmap(*question);
state = CIS_QUESTION;
break;
case CIS_QUESTION:
setPixmap(*initial);
state = CIS_INITIAL;
break;
default:
break;
}
}
break;
default:
break;
}
}
void CellItem::mouseReleaseEvent(QGraphicsSceneMouseEvent *event)
{
if(state == CIS_SWEPT||state == CIS_FLAG)
return;
switch(event->button())
{
case Qt::LeftButto
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 4011 2013-03-10 10:31 SweepMines\cellitem.cpp
文件 955 2013-03-10 10:30 SweepMines\cellitem.h
文件 306413 2013-03-10 11:49 SweepMines\debug\cellitem.o
文件 291202 2013-03-10 11:49 SweepMines\debug\field.o
文件 37809 2013-03-10 11:49 SweepMines\debug\game.o
文件 183772 2013-03-10 11:49 SweepMines\debug\main.o
文件 249527 2013-03-10 12:06 SweepMines\debug\mainwindow.o
文件 228304 2013-03-11 10:01 SweepMines\debug\minescustomdialog.o
文件 3303 2013-03-10 11:49 SweepMines\debug\moc_mainwindow.cpp
文件 186138 2013-03-10 11:49 SweepMines\debug\moc_mainwindow.o
文件 2551 2013-03-10 15:03 SweepMines\debug\moc_minescustomdialog.cpp
文件 191709 2013-03-10 15:03 SweepMines\debug\moc_minescustomdialog.o
文件 2498 2013-03-10 11:49 SweepMines\debug\moc_sweepminesapp.cpp
文件 128908 2013-03-10 11:49 SweepMines\debug\moc_sweepminesapp.o
文件 2538 2013-03-10 11:49 SweepMines\debug\moc_sweepminesscene.cpp
文件 188487 2013-03-10 11:49 SweepMines\debug\moc_sweepminesscene.o
文件 655169 2013-03-10 11:49 SweepMines\debug\qrc_image.cpp
文件 139473 2013-03-10 11:49 SweepMines\debug\qrc_image.o
文件 6136031 2013-03-11 10:01 SweepMines\debug\SweepMines.exe
文件 109653 2013-03-10 11:49 SweepMines\debug\sweepminesapp.o
文件 391135 2013-03-10 14:33 SweepMines\debug\sweepminesscene.o
文件 1838 2013-03-10 11:15 SweepMines\field.cpp
文件 847 2013-03-10 11:13 SweepMines\field.h
文件 117 2013-03-05 11:06 SweepMines\game.cpp
文件 303 2013-03-05 12:03 SweepMines\game.h
文件 9779 2011-08-03 19:41 SweepMines\image\1.jpg
文件 9619 2011-08-03 19:41 SweepMines\image\2.jpg
文件 10193 2011-08-03 19:41 SweepMines\image\3.jpg
文件 9800 2011-08-03 19:40 SweepMines\image\4.jpg
文件 10403 2011-08-03 19:40 SweepMines\image\5.jpg
............此处省略36个文件信息
- 上一篇:gdb manual
- 下一篇:王桂林老师 cocos2dx课件.pdf
相关资源
- 酒店管理系统基于Qt Creator5)
- uboot到linux logo显示不间断 补丁
- UNIX/LINUX编程实践教程的源码
- Linux任务管理器
- linux应用层的华容道游戏源代码
- vtk QT做的三维地质可视化系统2of2
- Qt局域网聊天软件
- ubuntu9.10 可加载内核模块和字符设备驱
- Qt Creator opengl实现四元数鼠标控制轨迹
- QT局域网聊天系统(基于QT5.修改过)
- qt-电子点菜系统
- MP3文件ID3v2ID3v2APEv2标签读取
- C 餐厅叫号系统(QT平)
- QT 实现文件下载
- qt图像处理
- 操作系统实验——虚存管理实验
- linux下的发包工具sendip
- 尚观培训linux许巍关于c 的笔记和讲义
- 尚观培训linux董亮老师关于数据结构的
- linux 线程池源码 c 版
- linux C 电梯程序练习
- QT,JPEG解码源代码(已完成)
- linux下用多进程同步方法解决生产者
- Linux 操作系统实验(全)
- Linux From Scratch 中文手册
- linux 网络实验 ftp程序
- Linux命令大全离线版&在线版
- Qt 播放音频文件
- 操作系统共享内存实验
- dos 下运行Linux 命令--gnu_utils
评论
共有 条评论