Click here to Skip to main content
Click here to Skip to main content

DSGraphEdit: A Reasonable Facsimile of Microsoft's GraphEdit in .NET

By , 19 Dec 2007
 
DSGraphEditDemo

Introduction

DSGraphEdit is a library to easily add functionality similar to Microsoft's venerable GraphEdit to your .NET applications. Most of the functionality has been recreated with a few new bells and whistles to aid in the debugging of DirectShow software.

Background

GraphEdit is a utility that comes with the DirectShow SDK (later moved to the Windows SDK) that is a visual tool for creating and testing filter graphs for media playback. One of the more powerful functions of GraphEdit is its ability to hook into a filter graph running in an external application via the ROT (Running Object Table). However, doing so tends to be frustrating as it frequently crashes and only provides limited functionality while connected to a remote graph. Another drawback of GraphEdit is that it is closed source and can't be freely redistributed with your own software. DSGraphEdit uses DirectShowLib, Media Foundation .NET (for the Enhanced Video Renderer) and DaggerLib. DaggerLib is a library that aids in the visual construction and execution of DAGs (Direct Acyclic Graphs) for flow-based programming. It will be covered in more detail in future articles.

Using the Code

To use DSGraphEdit in your own application, add a reference to the DaggerLib.DSGraphEdit.dll file found in the lib directory and add the namespace to the form:

//add namespace    

using DaggerLib.DSGraphEdit;

DaggerLib.DSGraphedit provides three controls:

  • DSGraphEditPanel: the workspace for viewing and manipulating a Filter Graph.ed.
  • DSFiltersPanel: a panel that maintains a tree of DirectShow filters registered on your system.
  • DSGraphEditForm: an all-in-one dialog of DSGraphEditPanel and DSFiltersPanel to make testing easier.

DSGraphEditPanel

Constructing a DSGraphEditPanel

DSGraphEditPanel can be created in four different ways:

  1. // construct a DSGraphEditPanel with an empty IFilterGraph
    
    DSGraphEditPanel dsGraphEditPanel = new DSGraphEditPanel();
  2. // construct a DSGraphEditPanel from an existing IFilterGraph
    
    IFilterGraph myFilterGraph = (IFilterGraph)new FilterGraph();
    ...
    // do something with myFilterGraph
    
    ...
    DSGraphEditPanel dsGraphEditPanel = new DSGraphEditPanel(myFilterGraph);
  3. // construct a DSGraphEditPanel from a *.grf file
    
    // Grf files are files that are created by GraphEdit or from a call 
    
    // to DSGraphEditPanel.SaveFilterGraph(string filename). 
    
    // Also, constructing a DSGraphEditPanel from a grf file should 
    
    // always be enclosed in a try/catch block because 
    
    // it may want some filters that are not registered on your system. 
    
    
    DSGraphEditPanel dsGraphEditPanel = null;
    try
    {
        dsGraphEditPanel = new DSGraphEditPanel("c:\\somegraphfile.grf");
    }
    catch (Exception ex)
    {
        // we failed, show the error
    
        MessageBox.Show(ex.Message, "Error loading graph file");
    }
  4. // attempt connection to a remote graph on the ROT via 
    
    // the DSGraphEditPanel.ConnectToRemoteGraph static method
    
    DSGraphEditPanel dsGraphEditPanel = null;
    try
    {
        dsGraphEditPanel = DSGraphEditPanel.ConnectToRemoteGraph();
    }
    catch (Exception ex)
    {
        MessageBox.Show(ex.Message, "Error connecting to remote graph");
    }
    ...
    // do something with your connected graph
    
    ...
    // disconnect from the Remote Graph
    
    dsGraphEditPanel.Dispose();
    dsGraphEditPanel = null;

The DSGraphEditPanel.ConnectToRemoteGraph() static method will prompt the user with a dialog box containing a list of IFilterGraphs that are currently registered on ROT:

Connecting to a Remote Graph

To disconnect from a Remote Graph, simply dispose of the DSGraphEditPanel with the Dispose() method. Also, similar to constructing from a *.grf file, the ConnectToRemoteGraph static method should always be enclosed in a try/catch block.

Working with DSGraphEditPanel

DSGraphEditPanel is comprised of three areas:

DSGraphEditPanel Items
The Toolbar Buttons
  • Play Button Runs the Filter Graph. The corresponding method is DSGraphEditPanel.Play().
  • Pause Button Pauses the Filter Graph. The corresponding method is DSGraphEditPanel.Pause().
  • Stop Button Stops the Filter Graph. The corresponding method is DSGraphEditPanel.Run().
  • Frame Skip Button Skips forward one frame. The corresponding method is DSGraphEditPanel.StepOneFrame().
  • Refresh Button Synchronizes the contents of the displayed graph with the Filter Graph. Use this if you think the contents of the canvas do not accurately reflect the current state of the Filter Graph. The corresponding method is DSGraphEditPanel.SyncGraphs().
  • Auto Arrange Button Auto-arranges the filters in the displayed graph. The corresponding method is DSGraphEditPanel.ArrangeNodes().
  • Disconnect All Pins Button Disconnects all pins in the Filter Graph.
  • Save Filter Graph Button Saves the Filter Graph to a *.grf file. These are compatible with Microsoft's GraphEdit. The corresponding method is DSGraphEditPanel.SaveFilterGraph(string filename).
  • Render Media File Button Renders a media file into the Filter Graph. The corresponding method is DSGraphEditPanel.RenderMediaFile(string filename).
  • Render URL Button Renders a URL (Uniform Resource Locator) into the Filter Graph. The corresponding method is DSGraphEditPanel.RenderURL(string URL).
  • Noodle Style Button Provides several styles for displaying connections between filters. The corresponding property is DSGraphEditPanel.NoodleStyle (yes, they're called Noodles):
    • Bezier: a simple bezier curve.
    • Lines: a five-segment line.
    • CircuitBoardCoarse: all right angles (uses AStar path finding).
    • CircuitBoardFine: same as CircuitBoardCoarse, but allows non-right angles.
    • Ramen: same as CircuitBoardFine, but uses splines instead of line segments
  • Graph Options Button Provides several operational and visual styles for the Filter Graph:
    • Drop Shadow: Filters and Noodles cast a drop shadow on the canvas. The corresponding property is DSGraphEditPanel.DropShadow.
    • Pin Placement: sets the pins on the Filters to be inside, outside or indented. The corresponding property is DSGraphEditPanel.PinPlacement.
    • Show Pin Names: draws the names for the pins onto the canvas. The corresponding property is DSGraphEditPanel.ShowPinNames.
    • Show/Hide Time Slider: sets the Time Slider (in)visible. The corresponding property is DSGraphEditPanel.ShowTimeSlider.
    • Modal Properties: sets if Filters show their properties in a modal dialog or directly on the canvas. The corresponding property is DSGraphEditPanel.ModalProperties.
    • Connect Intelligent: sets if the Filter Graph adds intermediate filters when it connects two pins. The corresponding property is DSGraphEditPanel.ConnectIntelligent.
    • Use Clock: enables or disables the reference clock of the Filter Graph. The corresponding property is DSGraphEditPanel.UseReferenceClock.
The Time Slider

If filterGraph has IMediaSeeking available, you can set the current playback of the graph with the Time Slider. Unlike Microsoft's GraphEdit, the Time Slider displays the current time (in hrs:mins:secs:frame format) and allows you to set the start and end positions of the media.

The Canvas

The Canvas is where the Filters are displayed as Nodes with interconnecting Noodles. Connecting pins is as easy as drag and drop, or point and click. In addition, depending on the type of Filter that is represented, the Node can have several different attributes.

If DSGraphEditPanel is set to ModalProprties = false, clicking the button will show/hide the properties for the filter inside the node. This way, you can have multiple filter properties open at once on the canvas. Otherwise, the filter properties will be shown in a modal dialog box. When viewing filter properties, clicking the Scan Interfaces button will scan the filter for all known DirectShow and Media Foundation interfaces, in addition to any interfaces in the Registry, and display them in a dialog box for your snooping pleasure.

If DSGraphEditPanel was created with the DSGraphEditPanel() or DSGraphEditPanel(string graphFileName) constructors and the filter is a Video Renderer, the video will be displayed inside the node. To detach the video into its own window, click the Detach Video Window button . Closing the detached video window will return to the video inside the Node. Also, if a Video Renderer is attached to any DVD Navigator Filter, the video window will post mouse events to the Navigator allowing interaction with DVD menus.

Unlike Microsoft's GraphEdit, DSGraphEditPanels allows you view and modify properties of DMOs (DirectX Media Objects):

DSGraphEditDemo DMO

DSFiltersPanel

DSFiltersPanel provides a searchable TreeView of all the DirectShow filters registered on the system. After DSFiltersPanel is constructed, set its AssociatedGraphPanel property to the current DSGraphEditPanel. Once a DSFilterPanel is created and associated with a DSGraphEditPanel, you can drag/drop filters onto a DSGraphEditPanel, double click them to add to the associated DSGraphEditPanel or click the Insert Filter button . DSFilterPanel also provides a property panel with all the FilterData information found in the registry:

DSFiltersPanel

Graph Navigator

The Graph Navigator provides a small overview of the current DSGraphEditPanel with a puck that shows the part of the canvas that is visible in the viewport. You can drag the puck to quickly scroll the graph to new locations.

Graph Navigator

DSGraphEditForm

DSGraphEditForm allows you to take a quick peek at a Filter Graph without having to hassle with setting up a DSGraphEditPanel/DSFiltersPanel pair or using connect to a remote graph:

// create an arbitrary IFilterGraph

IFilterGraph myFilterGraph = (IFilterGraph)new FilterGraph();
...
// do something with myFilterGraph

...
// create and show the DSGraphEditForm as a modal dialog

DSGraphEditForm dsGraphEditForm = new DSGraphEditForm(myFilterGraph);
dsGraphEditForm.ShowDialog();

// dispose of it

dsGraphEditForm.Dispose();
dsGraphEditForm = null;

No muss, no fuss.

Known Issues

In order for DSGraphEditPanel.ConnectToRemoteGraph() to work on Windows Vista, you actually need to have the version of GraphEdit from the Windows SDK for Windows Vista and register the proppage.dll that comes with it. If you have the older version of GraphEdit from the previous version of the Windows SDK, it still won't work. It has to be the one from the Windows SDK for Vista. The reason for this is that Microsoft (in their infinite wisdom) removed almost all the proxy/stub pairs from Quartz.dll in Vista and moved them all into the proppage.dll file. Without the proxy/stub pairs registered, Windows can't marshal proxies from one thread apartment to another. (Shame on you, Microsoft.)

History

  • 10/30/07: Initial release of DSGraphEdit
  • 12/14/07: Version 1.1
    • The DSGraphEdit demo now uses the Weifenluo DockPanel Suite for MDI-style multiple graph editing.
    • Major optimizations to DaggerLib.UI.Windows rendering speed.
    • Full source to DaggerLib.Core and DaggerLib.UI.Windows now included in Solution.
    • Added GraphNavigator control for easier editing/browsing of large graphs.
    • Pin names are drawn inside nodes when not viewing non-modal properties.
    • Arrange Nodes now accounts for pin names that are drawn on the Canvas.
    • InitVideoWindow in VideoInternalWindow would fail when loading a Graph that had an unconnected video renderer.
    • VideoInternalWindow now supports loading graphs that contain an EVR filter.
    • SyncGraph now removes/re-routes connections.
    • VideoInternalWindow posts mouse location and mouse clicks to attached DVD Navigators for interaction with DVD menus.
    • Filter Nodes hosting a VideoInternalWindow connected to DVD Navigators now have a DVD Chapters button.
    • VideoInternalWindow now supports windowed full screen.
    • Added CanvasImage property to DSGraphEditPanel for retrieving a snapshot of the Canvas.
    • Now scans ALL interfaces Pins and Filters support (not just the DirectShow interfaces).
    • Fixed some property pages not being visible in non-modal mode.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

JohnnyLocust
Software Developer Ontier Inc
United States United States
Member
AKA Rich Insley.
 
I have over 25 years experience in programming, and I'm completely self taught. (Except for one year at California State University Fresno where I had to learn the God awful language Miranda (http://miranda.org.uk/). I've spent 10 years as a Paratrooper in the US Army during the Clinton Administration.

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
QuestionNetwork streamingmemberSPRDEV26 Aug '11 - 20:24 
Hi,
 
first of all I'd like to say that you did really great work with this application. I have a question though:
I want to stream webcam data encoded MJPEG over a network connection. Is this possible? I found everything except a suitable output writer (WriterNetworkSink) for this task.
 
Can anyone help?
 
Thanks in advance
Philipp
QuestionCode QuestionmemberPGP_Protector11 Feb '11 - 9:18 
Ok, probably a simple question, but I've got a "Graph" Video Capture Device -> AVI Decompressor -> Video Renderer
With this, I see my live video (that I want), but how do I figure out the base code for just that function (I.E. The Actual C# Code to put this in my app?)
AnswerRe: Code QuestionmemberDestiny77727 May '11 - 13:52 
I too haven't found anything that really gives you workable code to use.
 
---
 
Looked at the link below but the code it generated didn't work for my complex DirectX Graph:
   http://www.infognition.com/GraphEditPlus/
 
Unless you pay for the "Graph Edit Plus" program, the generated code for your DirectX Graph is not editable or copyable. So you have to print a lot of screenshots then hand type the code into your own program before you can even test it to make sure it works or not!
 
---
 
Perhaps the MontiVision Development Kit Library might be helpful to you... Didn't help me much.
   http://www.montivision.com/
 
---
 
So for DirectX Graphs, unless doing a similar graph... I still have to do a LOT of internet searching and a LOT of testing when I get code close to what I need in the long run.
 
Maybe if we were to trace this program when it does the connecting of 2 blocks of the graph together such as [File Source (Async)] to [AVI Splitter] then perhaps it would show how the links are accomplished.
 
Roll eyes | :rolleyes:
GeneralRe: Code Question... Additional Information...memberDestiny77730 May '11 - 12:32 
The link below won't help you build your DirectX DirectShow Graph but it will let you know how it is pieced together.
 
DirectShow Filter Graph Spy:
   http://alax.info/blog/777
 
Hopefully that will help someone along the way to resolve their issue(s).
 
Smile | :)
 

GeneralMy vote of 5memberotakucode10 Jan '11 - 15:04 
Excellent project just in the library code used, DirectShow just puts it over the top!
GeneralOUTSTANDING CODE !!! One Questionmembertbfisher8 Nov '10 - 10:10 
I'm trying to adapt your code to control a remote graph in a native C++ app as follows:
 
List rot_list = DaggerDSUtils.GetFilterGraphsFromROT();
IFilterGraph ifg = null;
IBaseFilter filter = null;
foreach (DSGrapheditROTEntry ds_entry in rot_list)
{
if (ds_entry.ToString().Contains("MyString"))
{
ifg = ds_entry.ConnectToROTEntry(); // returns correct ifg
break;
}
}
if (ifg != null)
{
ifg.FindFilterByName("Smart Tee", out filter); /// finds correct filter
IPin capture_pin = DsFindPin.ByName(filter, "Capture"); /// cannot find pin ... returns null as does filter.enumpins, etc
IGraphBuilder graph = ifg as IGraphBuilder;
int res = graph.Render(capture_pin); /// fails since capture_pin is null
}
 
What am I doing wrong??
Thanks for any help and thanks again for such GREAT CODE!!
TF
GeneralAmazingmemberDiamonddrake12 Jul '10 - 12:02 
I can't believe I just now found this. This is an exceptional piece of work. Although I do agree, the feature from grapheditplus that gives you sample code to build the graph would be a much appreciated feature. either way this is a great piece.
 
I actually found this looking for how to play video with direct show. all the examples I find work, but the video playback is choppy, and I'm looking for a way around that. I think digging around in this code might tell me everything I need to know and then some.
 
Thanks for sharing.
GeneralRe: AmazingmemberJohnnyLocust21 Aug '10 - 0:57 
It's been a while since I've seen choppy video playback. However I do know that if you're on an XP system and your video is using VMR9 on your non primary display, you are going to get a HUGE performance hit. If you're on Vista or win7 you should try dragging an EVR onto the canvas and build your graph onto that.
GeneralRe: Amazing... I like it too! [modified]memberDestiny7774 Mar '11 - 9:15 
I found that GraphEdit plus is a nice demo but alas the sample code it gave me didn't work at all for a complex DirectX DirectShow Graph.
 
This is a nice program... well done.
 
Now I have to find out why when I create my complex video graph in MFC C++ - Visual Studio 2005 project that it returns E_FAIL or S_FALSE when starting my complex video graph. My complex video graph builds correctly with no errors but when attempting to use the graph it doesn't work properly. So will be using this program to try to track down how to fix that issue.
 
Thanks for a very well done project!
 

 
-- Modified Friday, March 4, 2011 5:44 PM
General64 bitmemberJohnnyLocust26 Sep '09 - 22:54 
This question has come up a few times, so I'll just make a quick excerpt on the subject:
Issue:
"somehow they (directshow filters) don't show up in the list of filters in DSGraphEdit"
 
Solution:
This happens on 64bit versions of windows. When you run DSGraphedit,
the .Net JIT compiler will automatically make it a 32 or 64 bit
application depending on your operating system. If DSGraphedit runs
as a 64bit app, it won't be able to see 32bit directshow filters
(which a vast majority of them are). You can use the corflags utility
to force the dsgraphedit assembly to always be 32bit:
 
CorFlags dsgraphedit.exe /32BIT+
 
CorFlags is available from the the visual studio 2008/2005 command prompt.
What I do is make two copies of dsgraphedit and call one 'dsgraphedit32'
and the other 'dsgraphedit64', then use the corflags utility on
dsgraphedit32 to make a 32bit application.
 
Peace Love and Hippy Chicks..... Johnny
Generalcan' compile the Codememberaquilaii23 Aug '09 - 6:22 
Hi,
 
its a fine work, but when ich compile the Code, the *.exe doesn't run.
 

How is the problem?
GeneralRe: can' compile the CodememberJohnnyLocust25 Aug '09 - 5:57 
The most likely cause is if some of the required assemblies aren't in the same folder as the exe. Ensure these DLLs are in the folder before you run it:
DaggerLib.dll
DaggerLib.DSGraphEdit.dll
DaggerLib.UI.Windows.dll
DirectShowLib-2005.dll
MediaFoundation.dll
WeifenLuo.WinFormsUI.Docking.dll
GeneralError reading .MOV with QuickTime Decodermemberemmanuel309 May '09 - 7:12 
I'm trying to use a free QuickTime ds decoder edited by River Past Corporation (http://www.riverpast.com/en/prod/quicktime/). It run well with GraphEdit but using it with dsgraphedit return an 0x80004005 error wich is "Unspecified error". Have you an idea which could help me?
GeneralUsing your codememberWKaa13 Nov '08 - 21:21 
Hello,
 
is it possible to use some of your code (e.g. canvas) in a professional code?
GeneralRe: Using your codememberJohnnyLocust15 Nov '08 - 10:30 
Most certainly. I've not placed any restrictions on using any of the code in DaggerLib or DsGraphEdit in commercial applications.
QuestionAttach to remote filtergraph running on Windows Mobile 6.0 ?membercarbi189712 Nov '08 - 13:04 
Hi, Do you know of any way to attach your version of Graph Edit to a graph running on Windows Mobile 6.0 without DCOM support? The usual mechanism for creating and registering an ItemMoniker in the ROT fails. Thanks Confused | :confused:
GeneralFantastic Job! You Need One More Feature to Be Number One...memberGUI Developer25 Oct '08 - 2:38 
Hi,
 
First, you did a beautiful, amazing job. Congratualtions.
 
Second, why did you write this great piece of software? Are you planning to sell it? You ould easily sell it for $29.95 and sell 10,000 copies in a year. I know, I sell a lot of software.
 
Third, the one feature that is missing is the only feature that GraphEditPlus sells which is their code generation--you can select C++ or C# and the code is written to load the graph and play it in a console application and the code generated to do this is displyed in a popup window so you can copy and paste it, and compile it. This is the feature that would make your program beat GraphEditPlus.
 
Fourth, every good application needs a demo that blows people out of the water. I have that demo for you. Did you know that you can easily compile VLC as a DirectShow filter and a free sample of the source code to do this is avaailable on the Internet--FREE? If you add this VLC as a DirectShow SOURCE filter to a sample graph it will play virtually any file format and RTSP streams from ip cameras and it has the best free multiplexer. That would give you a demo filter that literally does everything including RIPPING copy protected DVDs.
 
Anyway, congratulations again on a really beautiful piece of work.
 
If you ever need an investor for a project, call me and let's talk.
 
Bill SerGio, The Infomercial King Blush | :O
 
www.SlickSkins.net GUI Guy

QuestionRe: Fantastic Job! You Need One More Feature to Be Number One...membercarbi189712 Nov '08 - 12:30 
Hi, This sounds too good to be true. Where can the sample source code be found to compile VLC as a DirectShow source filter ? Thanks Wink | ;)
AnswerRe: Fantastic Job! You Need One More Feature to Be Number One...OpenSource VLC Sourcemembercarbi189714 Nov '08 - 6:01 
An opensource VLC DirectShow Source Filter for multiplexing captured audio/video for file writing or RTP streaming is available for download at http://www.sensoray.com/support/videoLan.htm
GeneralPhilips SPC 900 NC/00 PC Camera [modified]memberHoward Anderson23 Jun '08 - 12:49 
Hi,

I have been working with a "Philips SPC 900 NC/00 PC Camera" in several different software systems trying to understand how to handle display of the "Properties" window. I was hoping your software would be able to handle it so I could see what I was doing wrong but alas, your software "hangs" when I try to bring up the "Properties" window. You have to kill the program using the Task Manager or, if your are debugging, simply stop debugging. The statement that is hanging is this: "pp.Activate(tp.Handle, ref rect, false);", line 130 of PropertyPagePanel.cs. This behavior is also exhibited by GraphStudio which is in C++. Essentially the same problem.
 
In my software (HandyAvi), I have been using "OleCreatePropertyFrame" to bring up the window. That works and displays the "General" and "Video" tabs correctly but when the user hits the "Audio" tab, it crashes the whole application! Very annoying! (At least it doesn't "hang" so it is a little easier for the user Smile | :) )
 
These problems do not occur with other cameras so I assume Philips did something peculiar.
 
Also, the problem does not occur in GraphEdit or in GraphEditPlus (which I just bought) or in the Philips application that came with the camera so there must be some way to handle this?
 
What do we have to do to get the "SPC 900" "Properties" panel to display and behave properly?
 
Thanks,
 
Howard
 
Howard C. Anderson
HTTP://www.astroshow.com
modified on Monday, June 23, 2008 6:58 PM

GeneralRe: Philips SPC 900 NC/00 PC CameramemberHoward Anderson23 Jun '08 - 13:21 
Oh-oh.
 
I just tried my application on XP and it works. I compiled on Vista and the problem occurs in Vista. When I run the executable (without recompiling) it runs fine on XP without crashing when I hit the "Audio" tab.
 
So what was that you were saying about proxies in Vista? I have latest stuff installed on Vista. What else do I have to do I wonder?
 
I need the application to work on XP AND Vista... I don't want to have to tell the users to install other "proxy" stuff or whatever. It needs to be self-contained so that it installs and works.
 
Thanks,
 
Howard
 
Howard C. Anderson
HTTP://www.astroshow.com

QuestionHow to run in x86 mode on x64 VistamemberMr. Baz19 Mar '08 - 9:19 
I'm using Vista x64 and DSGraphEdit launches in 64-bit mode, but the filters I need to use are 32-bit only. Is there a way I can launch DSGraphEdit in 32-bit mode?
GeneralFurther readings [modified]memberKlatoo12 Jan '08 - 1:28 
Hi,
 
I'm new to the whole subject and would like to read a bit more about it as I have to admit that I don't have a clou Roll eyes | :rolleyes:
 
I got currently a problem on my PC that I can not view videos, but hear the sound, and if I start your program everything works magically (only if I load also a film to render).
 
I'm surer there is an easy? explanation to it, but don't have the necessary knowledge yet to find the problem.
 
So - do you have any recommendation on books or articles I could read to learn more about
the subject?
 
Look really forward for any recommendation,
 
Best regards
 
Chris
 
modified on Sunday, January 27, 2008 5:41:52 PM

Questionwhere to Questions about DaggerLib code?memberBryanWilkins7 Jan '08 - 8:38 
How/where can I post questions concerning the DaggerLib code?
 
Is there an easy way to make the daggerlib graphs top down? Instead of left right?
AnswerRe: where to Questions about DaggerLib code?memberJohnnyLocust8 Jan '08 - 21:55 
BryanWilkins wrote:
How/where can I post questions concerning the DaggerLib code?

 
You can email me at JohnnyLocust@gmail.com
 

BryanWilkins wrote:
Is there an easy way to make the daggerlib graphs top down? Instead of left right?

 
I'll work on that this week. In DaggerUINode.cs, UpdatePaths, UpdateTargetRegions, UpdateRegion, and CreateBackImage have to be extended to allow for vertical alignment, plus DaggerNoodle.cs has to be changed. If you let me know what you're trying to achieve, I may be able to help you. I made DaggerLib to be able to create flow based visual languages as seamless as possible.

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Permalink | Advertise | Privacy | Mobile
Web02 | 2.6.130516.1 | Last Updated 20 Dec 2007
Article Copyright 2007 by JohnnyLocust
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid