File: contactcluster.h

package info (click to toggle)
postbooks 4.10.0-2
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 112,660 kB
  • ctags: 22,890
  • sloc: cpp: 310,358; sh: 607; xml: 214; python: 140; awk: 104; makefile: 50
file content (129 lines) | stat: -rw-r--r-- 4,174 bytes parent folder | download | duplicates (2)
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
/*
 * This file is part of the xTuple ERP: PostBooks Edition, a free and
 * open source Enterprise Resource Planning software suite,
 * Copyright (c) 1999-2014 by OpenMFG LLC, d/b/a xTuple.
 * It is licensed to you under the Common Public Attribution License
 * version 1.0, the full text of which (including xTuple-specific Exhibits)
 * is available at www.xtuple.com/CPAL.  By using this software, you agree
 * to be bound by its terms.
 */

#ifndef _contactCluster_h

#define _contactCluster_h

#include "crmcluster.h"
#include "addresscluster.h"
#include "xurllabel.h"
#include "contactwidget.h"


class XTUPLEWIDGETS_EXPORT ContactClusterLineEdit : public CrmClusterLineEdit
{
    Q_OBJECT

    friend class ContactCluster;
    public:
      ContactClusterLineEdit(QWidget*, const char* = 0);

      Q_INVOKABLE int searchAcctId() { return _searchAcctId; }

    public slots:
      void setNewAddr(QString line1, QString line2, QString line3,
                      QString city, QString state, QString postalcode,
                      QString country);
      void setSearchAcct(int crmAcctId);
      void sList();
      void sNew();
      void sSearch();

    protected slots:
      ContactList* listFactory();
      ContactSearch* searchFactory();

    private:
      QStringList _newAddr;
      int _searchAcctId;
};

class XTUPLEWIDGETS_EXPORT ContactCluster : public VirtualCluster
{
    Q_OBJECT
    Q_PROPERTY(bool minimalLayout READ minimalLayout WRITE setMinimalLayout);

    public:
      ContactCluster(QWidget*, const char* = 0);
      Q_INVOKABLE int searchAcctId() { return _searchAcctId; }

      Q_INVOKABLE int crmAcctId() { return _crmAcctId; }
      Q_INVOKABLE bool minimalLayout() { return _minLayout; }

      Q_INVOKABLE void setHonorific(const QString honorifc);
      Q_INVOKABLE void setFirst(const QString first);
      Q_INVOKABLE void setMiddle(const QString middle);
      Q_INVOKABLE void setLast(const QString last);
      Q_INVOKABLE void setSuffix(const QString suffix);
      Q_INVOKABLE void setPhone(const QString phone);
      Q_INVOKABLE void setTitle(const QString title);
      Q_INVOKABLE void setFax(const QString fax);
      Q_INVOKABLE void setEmailAddress(const QString email);

      Q_INVOKABLE void setEmailSubjectText(const QString text);
      Q_INVOKABLE void setEmailBodyText(const QString text);

      Q_INVOKABLE QString name() const;
      Q_INVOKABLE QString honorific() const { return _fname->at(0); }
      Q_INVOKABLE QString first() const { return _fname->at(1); }
      Q_INVOKABLE QString middle() const { return _fname->at(2); }
      Q_INVOKABLE QString last() const { return _fname->at(3); }
      Q_INVOKABLE QString suffix() const { return _fname->at(4); }
      Q_INVOKABLE QString title() const { return _description->text(); }
      Q_INVOKABLE QString phone() const { return _phone->text(); }
      Q_INVOKABLE QString fax() const { return _fax->text(); }
      Q_INVOKABLE QString emailAddress() const { return _email->text(); }

    public slots:
      void launchEmail(QString url);
      void openUrl(QString url);
      void setDescriptionVisible(const bool p);
      void setMinimalLayout(bool);
      void setNameVisible(const bool) { }
      void setNewAddr(QString line1, QString line2, QString line3,
                      QString city, QString state, QString postalcode,
                      QString country);
      void setSearchAcct(int crmAcctId);

    private slots:
      void populate();

    signals:
      void changed();

    protected:
      void addNumberWidget(VirtualClusterLineEdit* pNumberWidget);
      void setName(int segment, const QString& name);

    private:
      bool _minLayout;
      int _crmAcctId;
      int _searchAcctId;
      QVBoxLayout* _addrLayout;
      QLabel* _titleLit;
      QLabel* _phoneLit;
      QLabel* _phone;
      QLabel* _phone2Lit;
      QLabel* _phone2;
      QLabel* _faxLit;
      QLabel* _fax;
      QLabel* _emailLit;
      QLabel* _webaddrLit;
      QLabel* _addr;
      QLabel* _addrLit;
      QStringList* _fname;
      XURLLabel* _email;
      XURLLabel* _webaddr;
      QString _subjText;
      QString _bodyText;
};

#endif