博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
SDL如何嵌入到QT中?!
阅读量:5893 次
发布时间:2019-06-19

本文共 3113 字,大约阅读时间需要 10 分钟。

如下 人家的代码,可是我编译之后却不行

/****************************************************************************
** $Id:  qt/SDLWidget.cpp   3.0.5   edited Oct 12 2001 $
**
** Copyright (C) 1992-2000 Trolltech AS.  All rights reserved.
**
** This file is part of an example program for Qt.  This example
** program may be used, distributed and modified without limitation.
**
*****************************************************************************/
#include <stdlib.h>
#include <stdio.h>
#include "SDL.h"
#include "SDLWidget.h"
#if defined(Q_WS_X11)
#include <X11/Xlib.h>
#endif
QSDLScreenWidget::QSDLScreenWidget( QWidget *parent, const char *name ) :
    QWidget(parent, name), screen(NULL)
{
    atexit(SDL_Quit);
}
void QSDLScreenWidget::resizeEvent( QResizeEvent * )
{
    char variable[64];
    // We could get a resize event at any time, so clean previous mode
    screen = NULL;
    SDL_QuitSubSystem(SDL_INIT_VIDEO);
    // Set the new video mode with the new window size
    sprintf(variable, "SDL_WINDOWID=0x%lx", winId());
    putenv(variable);
    if ( SDL_InitSubSystem(SDL_INIT_VIDEO) < 0 ) {
        fprintf(stderr, "Unable to init SDL: %s\n", SDL_GetError());
        return;
    }
    screen = SDL_SetVideoMode(width(), height(), 0, 0);
    if ( ! screen ) {
        fprintf(stderr, "Unable to set video mode: %s\n", SDL_GetError());
        return;
    }
}
void QSDLScreenWidget::paintEvent( QPaintEvent * )
{
#if defined(Q_WS_X11)
    // Make sure we're not conflicting with drawing from the Qt library
    XSync(QPaintDevice::x11Display(), FALSE);
#endif
    if ( screen ) {
        SDL_FillRect(screen, NULL, 0);
        SDL_Surface *image = SDL_LoadBMP("sample.bmp");
        if ( image ) {
            SDL_Rect dst;
            dst.x = (screen->w - image->w)/2;
            dst.y = (screen->h - image->h)/2;
            dst.w = image->w;
            dst.h = image->h;
            SDL_BlitSurface(image, NULL, screen, &dst);
        }
        SDL_Flip(screen);
    }
}
/****************************************************************************
** $Id:  qt/SDLWidget.h   3.0.5   edited Oct 12 2001 $
**
** Copyright (C) 1992-2000 Trolltech AS.  All rights reserved.
**
** This file is part of an example program for Qt.  This example
** program may be used, distributed and modified without limitation.
**
*****************************************************************************/
#ifndef SDLWIDGET_H
#define SDLWIDGET_H
#include <qwidget.h>
struct SDL_Surface;
class QSDLScreenWidget : public QWidget
{
    Q_OBJECT
public:
    QSDLScreenWidget( QWidget *parent=0, const char *name=0 );
protected:
    void resizeEvent( QResizeEvent * );
    void paintEvent( QPaintEvent * );
private:
    SDL_Surface *screen;
};
#endif
/****************************************************************************
** $Id:  qt/main.cpp   3.0.5   edited Oct 12 2001 $
**
** Copyright (C) 1992-2000 Trolltech AS.  All rights reserved.
**
** This file is part of an example program for Qt.  This example
** program may be used, distributed and modified without limitation.
**
*****************************************************************************/
#include <qapplication.h>
#include "SDLWidget.h"
/*
  The program starts here.
*/
int main( int argc, char **argv )
{
    QApplication a(argc,argv);
    QSDLScreenWidget w;
    a.setMainWidget( &w );
    w.show();
    return a.exec();
}

转载地址:http://whnsx.baihongyu.com/

你可能感兴趣的文章
eclipse中svn的各种状态图标详解
查看>>
ORA-12170: TNS:Connect timeout occurred
查看>>
当LinkButton无效时,光标不显示为手型
查看>>
Gradle学习系列之二——创建Task的多种方法
查看>>
WPF进阶之接口(1):IValueConverter,IMultiValueConverter
查看>>
Android 动画之View动画效果和Activity切换动画效果
查看>>
WSB备份到远程共享文件夹的限制
查看>>
Visual Studio技巧集锦
查看>>
JavaScript Source Map 详解
查看>>
算法:合并排序(Merge Sort)
查看>>
MVC登录前准备写好cookie
查看>>
ASP.NET Web API自身对CORS的支持: EnableCorsAttribute特性背后的故事
查看>>
【转】国家集训队论文分类
查看>>
Eclipse 常用快捷键
查看>>
INDEX--索引页上存放那些数据
查看>>
INDEX--关于索引的琐碎
查看>>
sql查看所有表大小的方法
查看>>
nexus7 1代 刷4.2.2+root[转]
查看>>
推荐一个很好的富文本web编辑器UEditor
查看>>
UNIX网络编程读书笔记:TCP输出、UDP输出和SCTP输出
查看>>