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
|
{% extends "cpp_implementation.cpp" %}
{% load kdev_filters %}
{% block includes %}
{{ block.super }}
#include "{{ output_file_privateheader }}"
{% endblock includes %}
{% block extra_definitions %}
{% for method in private_functions %}
{% with name|add:"Private" as name %}
{% include "method_definition_cpp.txt" %}
{
{% if method.type %}
return {{ method.default_return_value }};
{% endif %}
}
{% endwith %}
{% endfor %}
{% endblock extra_definitions %}
{% block function_definitions %}
{% for method in public_functions %}
{% with method.arguments as arguments %}
{% include "method_definition_cpp.txt" %}
{% if method.isConstructor %}
{% with arguments|first as argFirst %}
{# copy constructor? #}
{% if arguments|length == 1 and argFirst.type == method.name|arg_type %}
: d_ptr(new {{ name }}Private(*{{ argFirst.name }}.d_ptr))
{% else %}
: d_ptr(new {{ name }}Private())
{% endif %}
{% endwith %}
{% endif %}
{
{% block public_method_body %}
{% if method.isConstructor %}
{% block public_constructor_body %}
{% endblock public_constructor_body %}
{% elif method.isDestructor %}
{% block public_destructor_body %}
delete d_ptr;
{% endblock public_destructor_body %}
{% elif method.type %}
return {{ method.default_return_value }};
{% endif %}
{% endblock public_method_body %}
}
{% endwith %}
{% endfor %}
{% for property in members %}
{% include "class_property_getter_definition_cpp.txt" %}
{
Q_D(const {{ name }});
return d->{{ property.name }};
}
{% include "class_property_setter_definition_cpp.txt" %}
{
Q_D({{ name }});
if (d->{{ property.name }} == {{ property.name }}) {
return;
}
d->{{ property.name }} = {{ property.name }};
emit {{ property.name }}Changed(d->{{ property.name }});
}
{% endfor %}
{% for method in protected_functions %}
{% with method.arguments as arguments %}
{% include "method_definition_cpp.txt" %}
{% if method.isConstructor %}
{% with arguments|first as argFirst %}
{# copy constructor? #}
{% if arguments|length == 1 and argFirst.type == method.name|arg_type %}
: d_ptr(new {{ name }}Private(*{{ argFirst.name }}.d_ptr))
{% else %}
: d_ptr(new {{ name }}Private())
{% endif %}
{% endwith %}
{% endif %}
{
{% block protected_method_body %}
{% if method.isConstructor %}
{% block protected_constructor_body %}
{% endblock protected_constructor_body %}
{% elif method.isDestructor %}
{% block protected_destructor_body %}
delete d_ptr;
{% endblock protected_destructor_body %}
{% elif method.type %}
return {{ method.default_return_value }};
{% endif %}
{% endblock protected_method_body %}
}
{% endwith %}
{% endfor %}
{% endblock function_definitions %}
|