File: http-server.h

package info (click to toggle)
qdjango 0.6.2-3.3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 908 kB
  • sloc: cpp: 7,818; sh: 32; makefile: 12; javascript: 1
file content (68 lines) | stat: -rw-r--r-- 1,988 bytes parent folder | download | duplicates (3)
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
/*
 * Copyright (C) 2010-2015 Jeremy Lainé
 * Contact: https://github.com/jlaine/qdjango
 *
 * This file is part of the QDjango Library.
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 */

#include <QObject>

class QDjangoHttpRequest;
class QDjangoHttpResponse;
class QDjangoUrlResolver;
class AdminControllerPrivate;
class ModelAdminFetcher;
class ModelAdminPrivate;

class AdminController : public QObject
{
    Q_OBJECT

public:
    AdminController(QObject* parent = 0);
    void setupUrls(QDjangoUrlResolver *urls);

public slots:
    QDjangoHttpResponse* index(const QDjangoHttpRequest &request);
    QDjangoHttpResponse* staticFiles(const QDjangoHttpRequest &request, const QString &path);

private:
    AdminControllerPrivate *d;
};

class ModelAdmin : public QObject
{
    Q_OBJECT

public:
    ModelAdmin(ModelAdminFetcher *fetcher, QObject *parent = 0);
    ~ModelAdmin();

    QList<QByteArray> changeFields() const;
    void setChangeFields(const QList<QByteArray> fields);

    QList<QByteArray> listFields() const;
    void setListFields(const QList<QByteArray> fields);

    QDjangoUrlResolver *urls() const;

public slots:
    QDjangoHttpResponse* addForm(const QDjangoHttpRequest &request);
    QDjangoHttpResponse* changeForm(const QDjangoHttpRequest &request, const QString &objectId);
    QDjangoHttpResponse* changeList(const QDjangoHttpRequest &request);
    QDjangoHttpResponse* deleteForm(const QDjangoHttpRequest &request, const QString &objectId);

private:
    ModelAdminPrivate *d;
};