Tagged Questions
The composite tag has no wiki summary.
48
votes
6answers
37k views
How to clear the canvas for redrawing
After experimenting with composite operations and drawing images on the canvas I'm nog trying to remove images and compositing. How do I do this?
I need to clear the canvas for redrawing other ...
18
votes
6answers
7k views
Implementing MEF with ASP.NET MVC?
I am trying to find out if anyone has any experience or ideas of using MEF (Managed Extensible Framework (Microsoft's new plugin framework) with ASP.NET MVC. I need to create a standard ASP.NET MVC, ...
18
votes
14answers
2k views
When are interfaces needed?
(In the context of .NET for what its worth)
I tend to not use inheritance and rarely use interfaces. I came across someone who thinks interfaces are the best thing since spit. He uses them ...
11
votes
3answers
19k views
How do I configure a RollingFileAppender to roll by date and size with log4net?
I am configure log4net to use a composite RollingFileAppender so that the current file is always named logfile.log and all subsequent files are named logfile-YYYY.MM.dd.seq.log where seq is the ...
9
votes
4answers
866 views
Django Class Based View Composite
I'm using Django 1.3's Class-base generic views for a project. They're really nice but I would like to be DRYer. I have a page that displays a list of press coverage we've received and another which ...
9
votes
2answers
3k views
How do I associate a keypress with a DelegateCommand in Composite WPF?
I am building a composite application using CAL/Prism. The main region is a tab control, with multiple types of views in it. Each view has a custom set commands that it can handle which are bound to ...
9
votes
8answers
2k views
Composite primary key: to use or not to use
I am working on the design of a database that will be used to store data that originates from a number of different sources. The instances I am storing are assigned unique IDs by the original sources. ...
8
votes
3answers
185 views
Volume rendering: confusion with front-to-back compositing
In, for example, GPU Gems the front-to-back compositing equation (for colour) is
C'i = (1 - A'i-1)Ci + C'i-1
where C'i is the output accumulated colour value; A'i-1 is the accumulated alpha ...
7
votes
2answers
1k views
Composite foreign key columns in GORM
I need to customize the column names for composite foreign keys in GORM, and I didn't find any document that shows how to do it. I know how to customize PK columns, and how to customize a ...
7
votes
2answers
526 views
Iterating hierarchy of nodes - Visitor and Composite?
Let's imagine I have a collection of nodes that I use for my Renderer class later on. Then I have a Visitor class that can visit node or whole collection. It's simple because my collection of nodes ...
7
votes
7answers
4k views
Diamond inheritance (C++)
I know that having diamond inheritance is considered bad practice. However, I have 2 cases in which I feel that diamond inheritance could fit very nicely. I want to ask, would you recommend me to use ...
6
votes
1answer
298 views
composite pattern design questions
I have a question about two operations you commonly see in an example Composite class diagram.
* GetDescendents
* GetChild(int)
A common example being Files and Directories, I'll stick with that. ...
6
votes
2answers
2k views
6
votes
1answer
3k views
HTML5 Canvas compositing (source-in)
I am trying to recreate a page flipping type animation in HTML5 using canvas. The animation is based on ideas from this page. But that's not really important. The problem I am having is that using the ...
6
votes
3answers
7k views
WPF, Prism v2, Region in a modal dialog, add region in code behind
I have a composite WPF application. In one of my modules I want to make a wizard and have the steps show up in a region so I can switch between the steps easier. Originally I had this wizard showing ...
6
votes
5answers
990 views
How do composite indexes work?
I've created composite indexes (indices for you mathematical folk) on tables before with an assumption of how they worked. I was just curious if my assumption is correct or not.
I assume that when ...
6
votes
2answers
5k views
GWT Composite best practices
I'm learning GWT and have started to get the hang of it. I'm at the point where my code is getting to be a spaghetti mess so I'm going back and factoring reasonable bits of it out as Composites. The ...
5
votes
3answers
4k views
WPF - Is this a fit? Composite WPF (Prism), multiple screens/controls & 3rd Party Controls (Docking, Ribbon)
I'm looking at using Composite WPF (Prism) for an application shell. I also like the WPF Syncfusion DockingManager and Ribbon Control - but the question is how do I get the Syncfusion controls to work ...
5
votes
3answers
788 views
REST returning an object graph
I am new to the REST architecural design, however I think I have the basics of it covered.
I have a problem with returning objects from a RESTful call. If I make a request such as ...
4
votes
2answers
94 views
SWT user control design decision
Hypothetical question:
What about this SWT design decision that to make a custom compound widget I have to subclass Composite? Is that really wise?
Wouldn't it be better if SWT had a UserControl ...
4
votes
6answers
286 views
MySQL composite indexes and operator BETWEEN
I have a question about this query:
SELECT *
FROM runs
WHERE (NOW() BETWEEN began_at
AND finished_at)
Do you think it makes sense to create composite index for began_at and ...
4
votes
1answer
696 views
SWT Composite maximum size
I have a ScrolledComposite, the contents of which are being truncated. I have Googled and am aware that it is a known issue on Windows.
The only suggested workaround I can find is to use the ...
4
votes
2answers
368 views
Using Composition in ruby
I'm new Ruby but been a .net dev for many a year. I want to implement composition within a couple of my model to make sure they are as loosely coupled as possible but have no idea where to start, or ...
4
votes
4answers
1k views
Composite Primary keys and Foreign key constraint error
I have an SQL table defined as below:
CREATE TABLE [TestComposite] (
ID int,
SiteUrl nvarchar(255),
Name nvarchar(max) NOT NULL,
ParentID int NULL,
PRIMARY KEY (ID, ...
4
votes
2answers
561 views
Is the Composite Pattern SOLID?
the leaf in the composite implements the Component that has the Add Remove and GetChild methods that he is never going to use (violation of the Interface segregation)
so is the usage of composite ...
3
votes
2answers
138 views
Canvas - Fill a rectangle in all areas that are fully transparent
I'm writing a simple 2D game engine using the HTML5 canvas. I've come to adding a lighting engine. Each light source has a radius value and an intensity value (0-1, eg 1 would be very bright). There's ...
3
votes
4answers
467 views
How to set value of composite variable field using dynamic SQL
Given this type:
-- Just for testing purposes:
CREATE TYPE testType as (name text)
I can get the value of a field dynamically with this function:
CREATE OR REPLACE FUNCTION get_field(object ...
3
votes
1answer
40 views
Composition and projectiles
I'm using a composite design in my current game which works pretty well. All game objects are either instances of GameObject or are direct descendants of it... some objects implement a particular ...
3
votes
1answer
342 views
Image compositing
I have an album title of some music band. I want to draw it with some mask which will round the corners of image.
So, I've prepared such mask in gimp:
I'm using white mask, but it's invisible at ...
3
votes
4answers
1k views
PHP ORM with full composite primary/foreign key support
I'm looking for PHP5 ORM which fully supports composite (multi-column) relations based on composite primary keys and foreign keys.
I hoped that Doctrine 2 would solve this problem but it doesn't. ...
3
votes
4answers
408 views
Calling a Composite's GWT method from another Composite
I'm new to GWT and trying to make a simple app (like a small version of fmylife). Up to now i made a composite that loads the facts and another composite that has a form to submit new facts (this one ...
3
votes
3answers
1k views
GWT uibinder composite
I'm creating a composite uibinder widget with a Label and a TextBox.
The intented use is:
<x:XTextBox ui:field="fieldName" label="a caption" >
The text to be put in the box.
...
3
votes
2answers
509 views
WPF databinding to composite class patterns?
I am trying out WPF for the first time and I am struggling with how to bind controls to a class that is built up using composition of other objects. For example, If I have class Comp that is built up ...
3
votes
1answer
508 views
“Screen” effect in Java 2D graphics
This is a question that's been bugging me for some time now:
In photoshop/GIMP, there is a "screen" layer composition mode. This mode has bright colours have a strong alpha, and dark colours a weak ...
3
votes
2answers
831 views
Use Linq to Query for terminal/Leaf nodes in Hierarchical Table/Composite pattern
I have a self-referencing table with an Id, CategoryName, and ParentId. It's a typical scenario of a hierarchy table of categories that can themselves be divided into categories that DB experts tell ...
2
votes
4answers
176 views
Implementing a composite pattern using MVC/Backbone.js
My webapp has a composite structure i.e. each Category collection can contain a mixture of individual Items and other Categories as its rows/nodes/children (not sure of the correct terminology here). ...
2
votes
1answer
40 views
How to react on composite size change in GWT?
I want to implement something similar to geographic map widget. I made a Composite, consisting of motionless AbsolutePanel (outer) and moving AbsolutePanel inside (inner). User will move inner panel ...
2
votes
2answers
84 views
Memory management while Loading assembly using reflection
All,
I am creating a component that uses composite pattern. The core component uses an XMl Meta data to define the composites (parts). at run time, the core component would use reflection to load the ...
2
votes
1answer
77 views
How to? painting custom composite objects in Java
I was trying to make a board game in java and i am stuck with the following problem.
I want to create a object that can be painted in the jpanel. Let's name this object Board. This board i want it to ...
2
votes
0answers
26 views
can´t change the Failure Criteria to a Composite Failure Criteria
I need help with Solidworks 2011 version 1.0 64bit Windows7!
I´f build a composite shell and want to simulate a simple force on a surface. Everything is fine exapt of the following: When I want ...
2
votes
2answers
98 views
Java MVC & Composite Design Pattern With Internal Frames
Still wondering the best way to do Model-View-Controller Software Architecture, Do I pass the Controller into the View, or do I use the Observer Design Pattern and let the Controller Observe any ...
2
votes
3answers
93 views
c++ template containing object using same type T
I have a class MemoryPool with the following (shortened to relevant) code:
namespace System
{
template <class T>
class MemoryPool
{
public:
// only constructor
...
2
votes
1answer
78 views
how to persist a composite pattern with nhibernate
I am looking for examples of how to persist a tree structure, ideally one used as part of a composite pattern. Gabriel Shenker apparently wrote something about this awhile back but the link is dead.
...
2
votes
1answer
495 views
Fluent NHibernate Composite ID table problem
I'm kinda new to nhibernate and i ran into a problem.
I have the following tables:
Table 1:
Table Name: Users,
Column 1: ID,
Column 2: Name
Table 2:
Table Name: Missions,
Column 1: ID,
Column 2: ...
2
votes
2answers
36 views
Grouping by month with LINQ
What's the most simple way to group data over time, by month?
In the example below, there's a list of games where each have the date played and the city the game was played in. If we want to get the ...
2
votes
1answer
172 views
Merge two single channel BufferedImage objects
I have code that combines two BufferedImage objects, each one representing a separate color channel (red and blue). Currently I am doing:
int p, q, g, b;
for (int x = 0; x < width; ++x) {
...
2
votes
0answers
51 views
OpenRasta Framework for component (or composite) based web application
we are trying to build a more loosely coupled composite based web application, and looking at various options and frameworks.
The idea is like when the user browse to a page, the uri will be ...
2
votes
1answer
312 views
Linq self join composite key
please somebody could help me with this one.
I have a table that needs to be joined to itself. The table contains a composite key. So far the following SQL statement works perferct.
select * from ...
2
votes
2answers
112 views
Is there a patch to lua for composite operators (+=,-=,*=…)?
I know the composite operator is't necessary, but I really want it.
2
votes
2answers
268 views
MEF and Autofac in Silverlight 4 App
Just started working on a composite App that will multi-target WPF & Silverlight 4. It's quite likely that we'll allow some 3rd party plugins. Also, we'd like to partition the Silverlight app ...