File: fractaldata.h

package info (click to toggle)
fraqtive 0.4.3-2
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 988 kB
  • ctags: 1,249
  • sloc: cpp: 8,387; sh: 103; makefile: 45
file content (47 lines) | stat: -rw-r--r-- 1,295 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
/**************************************************************************
* This file is part of the Fraqtive program
* Copyright (C) 2004-2008 Michał Męciński
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
**************************************************************************/

#ifndef FRACTALDATA_H
#define FRACTALDATA_H

#include "datastructures.h"

class FractalData
{
public:
    FractalData();
    ~FractalData();

public:
    void clear();
    void setBuffer( double* buffer, int stride, const QSize& size );
    void transferBuffer( double* buffer, int stride, const QSize& size );

    bool isEmpty() const { return !m_buffer; }
    const double* buffer() const { return m_buffer; }
    int stride() const { return m_stride; }
    QSize size() const { return m_size; }

    void setValidRegion( const QRect& region );
    void setValidRegions( const QList<QRect>& regions );

    QList<QRect> validRegions() const { return m_validRegions; }

private:
    double* m_buffer;
    bool m_owner;

    int m_stride;
    QSize m_size;

    QList<QRect> m_validRegions;
};

#endif