Subversion Repositories svn1-original

Rev

Rev 297 | Rev 300 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 297 Rev 299
Line -... Line 1...
-
 
1
/*============================================================================
-
 
2
*           Copyright (C) 2013 Embedded Solutions
-
 
3
**============================================================================
-
 
4
**
-
 
5
**  Project/Product : 
-
 
6
**  Filename        : qmhttppath.c
-
 
7
**  Author(s)       : DDP
-
 
8
**
-
 
9
**  Description     : Class to load an HTML file from a URL
-
 
10
**                    This version will save it as a data blob internally
-
 
11
**                    Commented out code will write it to a file
-
 
12
**
-
 
13
**  Information     :
-
 
14
**   Compiler       : ANSI C++
-
 
15
**   Target         : 
-
 
16
**
-
 
17
***==========================================================================*/
-
 
18
 
1
#include <QtGui>
19
#include <QtGui>
2
#include <QLineEdit>
20
#include <QLineEdit>
3
#include <QLabel>
21
#include <QLabel>
4
#include "qmhttppath.h"
22
#include "qmhttppath.h"
5
 
23
 
Line 7... Line 25...
7
#include <QtNetwork>
25
#include <QtNetwork>
8
 
26
 
9
#include "Qmhttppath.h"
27
#include "Qmhttppath.h"
10
#include "ui_authenticationdialog.h"
28
#include "ui_authenticationdialog.h"
11
 
29
 
-
 
30
/*----------------------------------------------------------------------------
-
 
31
** FUNCTION           : Qmhttppath
-
 
32
**
-
 
33
** DESCRIPTION        :  Constructor
-
 
34
**                       Creates dialog to procces the web file loading
-
 
35
**
-
 
36
** INPUTS             :
-
 
37
**
-
 
38
** RETURNS            :
-
 
39
**
-
 
40
----------------------------------------------------------------------------*/
-
 
41
 
-
 
42
 
12
Qmhttppath::Qmhttppath(QWidget *parent)
43
Qmhttppath::Qmhttppath(QWidget *parent)
13
    : QDialog(parent)
44
    : QDialog(parent)
14
{
45
{
15
    this->resize(500,40);
46
    this->resize(500,40);
16
    urlLineEdit = new QLineEdit("http://www.mccays.com.au/theevent/Essential Content/current_entries.htm");
47
    urlLineEdit = new QLineEdit("http://www.mccays.com.au/theevent/Essential Content/current_entries.htm");