0
votes
3answers
66 views
a design problem with relatively complicated validations
hi,
i have a design problem.. it may seem that i'm giving you too much details, but those are important.
say i have a very large input form, with a complicated input, that requir …
1
vote
3answers
168 views
C# producer/consumer
hi, i've recently come across a producer/consumer pattern c# implementation. it's very simple and (for me at least) very elegant.
it seems to have been devised around 2006, so i w …
3
votes
2answers
105 views
Python Implementation of the Object Pool Design Pattern
I need an Object Pool, and rather than implement it myself, I thought I would look around for a ready-made and tested Python library.
What I found was plenty of other people looki …
2
votes
1answer
261 views
C# Factory Pattern
I am building a search application that has indexed several different data sources. When a query is performed against the search engine index, each search result specifies which d …
1
vote
7answers
212 views
[C++] How to solve the problem of global access?
Hi,
I'm building an app, and I need the wisdom of the SO community on a design issue.
In my application, there needs to be EXACTLY one instance of the class UiConnectionList, Ui …
8
votes
5answers
117 views
Keeping everything loosely coupled and extendable: Too many layers, too small ROI?
Hello,
I (now more than ever) see developers write huge amounts of layers such as:
implementation PresentationLayer ->
interface IMyDTO ->
implementation MyDT …
0
votes
0answers
31 views
making a windows forms validation library for own use
I wish to make controls like textbox, combobox, listbox and other user editable controls to be bound with validation, so i thought of extending the existing controls and make a new …
1
vote
1answer
63 views
Set parent’s status bar text?
I can set the parent's status bar text with this function I wrote
void EditorWindow::setStatusBarText(const QString& text) {
statusBar()->showMessage(text);
}
Called …
1
vote
2answers
164 views
Multiple language components/classes [OOP/Patterns/IoC/DI]
I have several components for which there exists different versions, depending on the language used by the system (configurable, and can be changed at runtime). For example, I have …
0
votes
2answers
71 views
Is the front controller responsible for deciding which controllers/modules to load?
Hi,
I am working on a website script, and currently I have a front controller, which determines what to load (e.g. what modules/extensions and controllers) based on the URI. Is th …
